UNPKG

baasic-sdk-nodejs

Version:

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

9 lines (8 loc) 510 B
import { IHttpResponse } from '../../../../infrastructure/common/contracts'; import { IArticleFile } from '../'; export interface IArticleInstanceFilesStreamsClient { get(articleId: string, data: any): PromiseLike<IHttpResponse<any>>; getBlob(articleId: string, data: any): PromiseLike<IHttpResponse<any>>; update(articleId: string, data: any, stream: any): PromiseLike<IHttpResponse<any>>; create(articleId: string, data: IArticleFile, stream: any): PromiseLike<IHttpResponse<any>>; }