Preparing search index...
    type DebouncedFunction<T extends (...args: any[]) => any> = {
        cancel: () => void;
        (...args: Parameters<T>): void;
    }

    Type Parameters

    • T extends (...args: any[]) => any
    • Parameters

      • ...args: Parameters<T>

      Returns void

    Index

    Properties

    Properties

    cancel: () => void