intro.js
Version:
User Onboarding and Product Walkthrough Library
7 lines (6 loc) • 348 B
TypeScript
import { TourStep } from "./steps";
import { Tour } from "./tour";
export declare const appendMockSteps: (targetElement?: HTMLElement) => HTMLElement[];
export declare const getMockPartialSteps: () => Partial<TourStep>[];
export declare const getMockSteps: () => TourStep[];
export declare const getMockTour: (targetElement?: HTMLElement) => Tour;