UNPKG

intro.js

Version:

User Onboarding and Product Walkthrough Library

10 lines (9 loc) 327 B
import { State } from "../../dom"; import { HintItem } from "../hintItem"; export type HintProps = { index: number; hintItem: HintItem; refreshesSignal: State<number>; onClick: (e: any) => void; }; export declare const HintIcon: ({ index, hintItem, onClick, refreshesSignal, }: HintProps) => HTMLAnchorElement;