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) 426 B
import { IHttpResponse } from '../../../../infrastructure/common/contracts'; import { IArticleFile } from '../'; export interface IArticleFilesStreamsClient { get(data: any): PromiseLike<IHttpResponse<any>>; getBlob(data: any): PromiseLike<IHttpResponse<any>>; update(data: any, stream: any): PromiseLike<IHttpResponse<any>>; create(data: IArticleFile, stream: any): PromiseLike<IHttpResponse<any>>; }