Plumile JS API
    Preparing search index...

    Type Alias DevtoolsBridge

    type DevtoolsBridge = {
        getEntry: () => RouterEntrySnapshot | null;
        getEvents: () => RouterEvent[];
        historyLimit: number;
        subscribeEntries: (
            callback: (entry: RouterEntrySnapshot) => void,
        ) => () => void;
        subscribeEvents: (callback: (event: RouterEvent) => void) => () => void;
    }
    Index

    Properties

    getEntry: () => RouterEntrySnapshot | null
    getEvents: () => RouterEvent[]
    historyLimit: number
    subscribeEntries: (callback: (entry: RouterEntrySnapshot) => void) => () => void
    subscribeEvents: (callback: (event: RouterEvent) => void) => () => void