@wxn0brp/vql-client
    Preparing search index...

    Interface VQLHooks

    interface VQLHooks {
        onEnd?: (
            query: VQLUQ,
            durationMs: number,
            result: any,
            hookContext: any,
        ) => void;
        onError?: (
            query: VQLUQ,
            error: unknown,
            result?: any,
            hookContext?: any,
        ) => void;
        onStart?: (query: VQLUQ, hookContext: any) => void;
    }
    Index

    Properties

    onEnd?: (
        query: VQLUQ,
        durationMs: number,
        result: any,
        hookContext: any,
    ) => void
    onError?: (
        query: VQLUQ,
        error: unknown,
        result?: any,
        hookContext?: any,
    ) => void
    onStart?: (query: VQLUQ, hookContext: any) => void