UNPKG

@lomray/microservice-payment-stripe

Version:

Stripe payment microservice based on NodeJS & inverted json.

16 lines (15 loc) 425 B
import Product from "../../entities/product.js"; declare class ProductCreateInput { entityId: string; name: string; userId: string; description?: string; images?: string[]; } /** * Create new product */ declare const create: import("@lomray/microservice-helpers/services/endpoint").IReturnWithMeta<never, ProductCreateInput, Record<string, any>, { entity: Product; }>; export { create as default };