mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-16 03:31:45 +08:00
7 lines
320 B
TypeScript
7 lines
320 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; |