moip-sdk-node-ts
Version:
Moip v2 API wrapper
9 lines (8 loc) • 441 B
TypeScript
import * as types from './bank-account-types';
declare const _default: {
create: (_id: string, bankAccount: types.BankAccount, accessToken?: string | undefined) => Promise<any>;
getOne: (_id: string, accessToken?: string | undefined) => Promise<any>;
getAll: (_id: string, accessToken?: string | undefined) => Promise<any>;
remove: (_id: string, accessToken?: string | undefined) => Promise<any>;
};
export default _default;