react-virtual-tryon
Version:
## **Introduction**
14 lines (13 loc) • 523 B
TypeScript
type GarmentType = "tops" | "bottoms" | "one-pieces";
interface VirtualFittingRoomProps {
garmentId: string;
garmentImage: string;
garmentName: string;
garmentType: GarmentType;
apiKey: string;
token: string;
widgetClasses: string;
onClose: () => void;
}
export declare function VirtualFittingRoom({ garmentId, garmentImage, garmentName, garmentType: initialGarmentType, apiKey, token, widgetClasses, onClose, }: VirtualFittingRoomProps): import("react/jsx-runtime").JSX.Element;
export {};