UNPKG

baasic-sdk-nodejs

Version:

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

7 lines (6 loc) 321 B
import { IHttpResponse } from '../../../../../infrastructure/common/contracts'; export interface ICommerceLookupsCountryStateBatchClient { create(data: any): PromiseLike<IHttpResponse<any>>; update(data: any): PromiseLike<IHttpResponse<void>>; remove(ids: string[]): PromiseLike<IHttpResponse<void>>; }