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) 337 B
import { IHttpResponse } from '../../../../infrastructure/common/contracts'; import { ISkill } from '../'; export interface ISkillBatchClient { create(data: ISkill[]): PromiseLike<IHttpResponse<any>>; update(data: ISkill[]): PromiseLike<IHttpResponse<void>>; remove(ids: string[]): PromiseLike<IHttpResponse<void>>; }