Sha256: e08f0b97dd7c8cd03e734916376b10768afea416363e06a8500b8480c926d3d4
Contents?: true
Size: 1.04 KB
Versions: 2
Compression:
Stored size: 1.04 KB
Contents
declare type WalkthroughProps = { aria?: { [key: string]: string; }; callback?: () => void; className?: string; continuous?: boolean; data?: { [key: string]: string; }; id?: string; run?: boolean; steps?: []; stepIndex?: number; debug?: boolean; disableCloseOnEsc?: boolean; disableOverlay?: boolean; disableOverlayClose?: boolean; disableScrolling?: boolean; floaterProps?: object; hideBackButton?: boolean; hideCloseButton?: boolean; showProgress?: boolean; showSkipButton?: boolean; spotlightClicks?: boolean; spotlightPadding?: number; styles?: { options: { beaconSize?: number; arrowColor?: string; backgroundColor?: string; primaryColor?: string; overlayColor?: string; spotlightShadow?: string; width?: number; zIndex?: number; }; }; }; declare const Walkthrough: (props: WalkthroughProps) => JSX.Element; export default Walkthrough;
Version data entries
2 entries across 2 versions & 1 rubygems