interface VirtualStylingApi {
    getLook(cb: ((look: string) => void)): void;
    hide(): void;
    show(collection: Promise<Collection>, collectionReference: AssetReference, options?: {
        allowRRGATracking?: boolean;
        analytics?: Partial<IAnalyticEvents>[];
        closeable?: boolean;
        commerceProvider?: CommerceProvider;
        consent?: ConsentState;
        customStyle?: string;
        fullscreen?: boolean;
        informationProvider?: Promise<Partial<GarmentInformationProvider>>;
        layoutAlignment?: "left" | "right";
        noInternalAnalytics?: boolean;
        sharedState?: IShareState;
    }): void;
}

Methods

Methods