UNPKG

typescript-logging

Version:

Library for logging, written in typescript, can be used by normal es5+ javascript as well.

9 lines (8 loc) 224 B
export declare class Timeout { /** * Invoke function later with given delay (uses settimeout) * @param f Function * @param delay Delay */ static invokeLater(f: () => void, delay: number): void; }