UNPKG

baasic-sdk-javascript

Version:

JavaScript SDK provides core functionality for building web and mobile applications on [Baasic](http://www.baasic.com/).

18 lines (17 loc) 519 B
import { IModel } from '../../../common/contracts'; import { IArticleComment, IArticleFile, IAuthor, IArticleTag, IRating } from './'; export interface IArticle extends IModel { allowComments?: boolean; archiveDate?: string; author?: IAuthor; authorId?: string; comments?: IArticleComment; content?: string; fileEntries?: IArticleFile; publishDate?: string; ratings?: IRating[]; slug?: string; status?: number; tags: IArticleTag[]; title?: string; }