Wagtail client-side components
    Preparing search index...

    Type Alias DebouncedFunction<F>

    A function that has been debounced.

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

    Type Parameters

    • F extends AnyFunction
    Index

    Methods

    Methods