@lomray/microservice-payment-stripe
Version:
Stripe payment microservice based on NodeJS & inverted json.
11 lines (10 loc) • 367 B
TypeScript
declare class SetupIntentInput {
userId: string;
}
/**
* Setup intent and return client token to get access to adding payment method
*/
declare const setupIntent: import("@lomray/microservice-helpers/services/endpoint").IReturnWithMeta<never, SetupIntentInput, Record<string, any>, {
clientSecretToken: string | null;
}>;
export { setupIntent as default };