UNPKG

baasic-sdk-javascript

Version:

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

8 lines (7 loc) 278 B
import { IModel } from '../../../common/contracts'; import { IArticleComment, IArticleCommentMetadata } from './'; export interface IArticleCommentReply extends IModel, IArticleCommentMetadata { comment?: IArticleComment; commentId?: string; reply: string; }