Interface IHistoryControl

Interface defining control methods for configuring history behavior.

interface IHistoryControl {
    useHistoryCallbacks: (
        Callbacks: Partial<IHistoryInstanceCallbacks>,
    ) => void;
    useHistoryAdapter(Ctor: THistoryInstanceCtor): void;
}

Properties

useHistoryCallbacks: (Callbacks: Partial<IHistoryInstanceCallbacks>) => void

Configures lifecycle callbacks for history instances.

Type declaration

Methods