Wagtail client-side components
    Preparing search index...

    Interface DebouncedFunction<F>

    A function that has been debounced.

    interface DebouncedFunction<F extends AnyFunction> {
        cancel(): void;
        restore(): F;
        (...args: Parameters<F>): Promise<Awaited<ReturnType<F>>>;
    }

    Type Parameters

    • F extends AnyFunction
    Index

    Methods

    Methods