11 lines
170 B
TypeScript
11 lines
170 B
TypeScript
import { Tag } from '@blog/Model/Tag';
|
|
|
|
export type Post = {
|
|
title: string,
|
|
slug: string,
|
|
description: string,
|
|
content: string,
|
|
date: Date,
|
|
tags: string[]
|
|
};
|