@lomray/microservice-payment-stripe
Version:
Stripe payment microservice based on NodeJS & inverted json.
14 lines (13 loc) • 379 B
TypeScript
import Customer from "../../entities/customer.js";
declare class CustomerCreateInput {
userId: string;
email: string;
name: string;
}
/**
* Create new customer
*/
declare const create: import("@lomray/microservice-helpers/services/endpoint").IReturnWithMeta<never, CustomerCreateInput, Record<string, any>, {
entity: Customer;
}>;
export { create as default };