Enode — API Reference
    Preparing search index...
    type TourController = {
        activeTourId: string | null;
        dismiss: () => void;
        start: (tour: TourDefinition) => void;
    }
    Index

    Properties

    activeTourId: string | null

    The running tour's id, or null when idle.

    dismiss: () => void

    Close the running tour, recording it as dismissed.

    start: (tour: TourDefinition) => void

    Start a tour (a no-op while another runs). Resolves the steps whose data-tour targets are present and visible — permission-hidden or collapsed targets drop out — and silently does nothing when none resolve.