Files
tsclass/dist/content/article.d.ts
2017-06-10 12:48:11 +02:00

20 lines
337 B
TypeScript

import { IAuthor } from '../index';
export interface IArticle {
/**
* the title of an article
*/
title: string;
/**
* the Author of an article
*/
author: IAuthor;
/**
* the content of an article
*/
content: string;
/**
* the tags of an article
*/
tags: string[];
}