UNPKG

172 BTypeScriptView Raw
1/**
2 * 等待指定时间
3 * @async
4 */
5async function sleep(
6 /** 等待时间,单位: ms */
7 time: number
8): Promise<undefined>;
9
10export default sleep;