moip-sdk-node-ts
Version:
Moip v2 API wrapper
11 lines (10 loc) • 377 B
TypeScript
import * as types from './plan-types';
declare const _default: {
getOne: (_code: string) => Promise<any>;
getAll: () => Promise<any>;
create: (plan: types.Plan) => Promise<any>;
activate: (_code: string) => Promise<any>;
inactivate: (_code: string) => Promise<any>;
update: (_code: string, plan: types.Plan) => Promise<any>;
};
export default _default;