Plumile JS API
    Preparing search index...

    Type Alias InstrumentationAPI

    Instrumentations can observe router events, entry changes, and optionally dispose resources when the registry is torn down.

    type InstrumentationAPI = {
        dispose?: () => void;
        onEntryChange?: (entry: RouterEntrySnapshot) => void;
        onEvent?: (event: RouterEvent) => void;
    }
    Index

    Properties

    dispose?: () => void
    onEntryChange?: (entry: RouterEntrySnapshot) => void
    onEvent?: (event: RouterEvent) => void