Wagtail client-side components
    Preparing search index...

    Type Alias DebouncedFunction<A, R>

    type DebouncedFunction<A extends any[], R = any> = {
        cancel(): void;
        restore(): (...args: A) => R | Promise<R>;
        (...args: A): Promise<R>;
    }

    Type Parameters

    • A extends any[]
    • R = any
    Index

    Methods

    Methods