Logos DX
    Preparing search index...

    Interface ThrottledFunction<T>

    Enhanced function interface with cancel capability

    interface ThrottledFunction<T extends Func> {
        cancel(): void;
        (...args: Parameters<T>): ReturnType<T>;
    }

    Type Parameters

    Index

    Methods

    Methods