mirror of
https://git.tuxpa.in/a/code-server.git
synced 2025-01-08 09:38:44 +00:00
12 lines
839 B
TypeScript
12 lines
839 B
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
declare function setTimeout(callback: (...args: any[]) => void, ms: number, ...args: any[]): NodeJS.Timer;
|
|
declare function clearTimeout(timeoutId: NodeJS.Timer): void;
|
|
declare function setInterval(callback: (...args: any[]) => void, ms: number, ...args: any[]): NodeJS.Timer;
|
|
declare function clearInterval(intervalId: NodeJS.Timer): void;
|
|
declare function setImmediate(callback: (...args: any[]) => void, ...args: any[]): any;
|
|
declare function clearImmediate(immediateId: any): void;
|