@lomray/microservice-payment-stripe
Version:
Stripe payment microservice based on NodeJS & inverted json.
12 lines (11 loc) • 413 B
TypeScript
declare class DashboardLoginLinkInput {
userId: string;
}
/**
* Create new link for access to the express account dashboard
* @description Eligible only for the express accounts
*/
declare const dashboardLoginLink: import("@lomray/microservice-helpers/services/endpoint").IReturnWithMeta<never, DashboardLoginLinkInput, Record<string, any>, {
url: string;
}>;
export { dashboardLoginLink as default };