@lomray/microservice-payment-stripe
Version:
Stripe payment microservice based on NodeJS & inverted json.
13 lines (12 loc) • 399 B
TypeScript
declare class ConnectAccountLinkInput {
userId: string;
refreshUrl: string;
returnUrl: string;
}
/**
* Create new link for access to connect account
*/
declare const connectAccountLink: import("@lomray/microservice-helpers/services/endpoint").IReturnWithMeta<never, ConnectAccountLinkInput, Record<string, any>, {
accountLink: string;
}>;
export { connectAccountLink as default };