UNPKG

baasic-sdk-nodejs

Version:

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

11 lines (10 loc) 649 B
import { IBaasicQueryModel, IGetRequestOptions, IHttpResponse, IOptions } from '../../../../../infrastructure/common/contracts'; import { ICommerceLookupsCountryStateBatchClient } from '../../'; export interface ICommerceLookupsCountryStateClient { find(options?: IOptions): PromiseLike<IHttpResponse<IBaasicQueryModel<any>>>; get(id: string, options?: IGetRequestOptions): PromiseLike<IHttpResponse<any>>; create(data: any): PromiseLike<IHttpResponse<any>>; update(data: any): PromiseLike<IHttpResponse<void>>; remove(data: any): PromiseLike<IHttpResponse<void>>; batch: ICommerceLookupsCountryStateBatchClient; }