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