Interface DebouncedInvokerInit

interface DebouncedInvokerInit {
    delay?: number;
    method: (() => void);
}

Properties

Properties

delay?: number
method: (() => void)

Type declaration

    • (): void
    • Method to be invoked with delay.

      Returns void