mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-16 11:42:04 +08:00
8 lines
321 B
TypeScript
8 lines
321 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;
|