mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-15 19:26:42 +08:00
7 lines
318 B
TypeScript
7 lines
318 B
TypeScript
/**
|
|
* Timer functions.
|
|
*/
|
|
export declare function setTimeout(callback: Function, milliseconds: number): number;
|
|
export declare function clearTimeout(id: number): void;
|
|
export declare function setInterval(callback: Function, milliseconds: number): number;
|
|
export declare function clearInterval(id: number): void; |