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'; import { IMeteringCategory } from '../'; export interface IMeteringCategoryBatchClient { create(data: IMeteringCategory[]): PromiseLike<IHttpResponse<IMeteringCategory[]>>; update(data: IMeteringCategory[]): PromiseLike<IHttpResponse<void>>; delete(ids: string[]): PromiseLike<IHttpResponse<void>>; }