UNPKG

baasic-sdk-nodejs

Version:

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

8 lines (7 loc) 397 B
import { IHttpResponse } from '../../../../infrastructure/common/contracts'; export interface IUserProfileAvatarStreamsClient { get(data: any): PromiseLike<IHttpResponse<any>>; getBlob(data: any): PromiseLike<IHttpResponse<any>>; create(id: string, data: any, stream: any): PromiseLike<IHttpResponse<any>>; update(data: any, stream: any): PromiseLike<IHttpResponse<any>>; }