wix-style-react
Version:
wix-style-react
22 lines • 608 B
TypeScript
export function tickerDriverFactory(component: any): {
getUp: () => any;
getDown: () => any;
clickUp: () => void;
clickDown: () => void;
isUpDisabled: () => any;
isDownDisabled: () => any;
exists: () => boolean;
};
export function componentFactory(props?: {}, context?: {}): any;
export function tickerTestkitFactory({ wrapper }: {
wrapper: any;
}): {
getUp: () => any;
getDown: () => any;
clickUp: () => void;
clickDown: () => void;
isUpDisabled: () => any;
isDownDisabled: () => any;
exists: () => boolean;
};
//# sourceMappingURL=Ticker.d.ts.map