@lomray/microservice-payment-stripe
Version:
Stripe payment microservice based on NodeJS & inverted json.
11 lines (10 loc) • 335 B
TypeScript
declare class BalanceInput {
userId: string;
}
/**
* Returns balance
*/
declare const balance: import("@lomray/microservice-helpers/services/endpoint").IReturnWithMeta<never, BalanceInput, Record<string, any>, {
balance: import("../../services/payment-gateway/stripe.js").TCustomerBalance;
}>;
export { balance as default };