UNPKG

nxkit

Version:

This is a collection of tools, independent of any other libraries

10 lines (9 loc) 266 B
export declare class DelayCall<A extends any[]> { private m_onExecute; private m_timeoutid; private m_delay; constructor(onExecute: (...args: A) => void, delay?: number); notice(...args: A): void; call(...args: A): void; clear(): void; }