react-virtual-tryon
Version:
## **Introduction**
14 lines (13 loc) • 349 B
TypeScript
import * as React from "react";
interface TryOnContextType {
apiKey: string;
token: string;
}
interface TryOnProviderProps {
apiKey: string;
token: string;
children: React.ReactNode;
}
declare const TryOnProvider: React.FC<TryOnProviderProps>;
export declare const useTryOn: () => TryOnContextType;
export default TryOnProvider;