stockshark-tour
Version:
VueJS Tour is a lightweight, simple and customizable tour plugin. It provides a quick and easy way to guide your users through your application.
14 lines (12 loc) • 319 B
TypeScript
import { NanoPopPosition } from 'nanopop';
export interface ITourStep {
target: string;
content: string;
placement?: NanoPopPosition;
isCompleted: boolean;
onBefore?: () => Promise<void>;
onAfter?: () => Promise<void>;
highlight?: boolean;
backdrop?: boolean;
noScroll?: boolean;
}