中文
Appearance
根据给定的 wait 时间延迟值。
wait
Signature:
declare function delay(wait: number): Promise<void>;
await delay(1000); console.log("hello"); // after 1000 milliseconds log hello
Open Source Code