UNPKG

intro.js

Version:

User Onboarding and Product Walkthrough Library

15 lines (14 loc) 279 B
import { Hint } from "./hint"; import { HintItem } from "./hintItem"; /** * Show all hints * * @api private */ export declare function showHints(hint: Hint): Promise<void>; /** * Show a hint * * @api private */ export declare function showHint(hintItem: HintItem): void;