mirror of
https://github.com/PaiGramTeam/luoxu-api-pub.git
synced 2024-11-25 17:35:39 +00:00
7 lines
132 B
TypeScript
7 lines
132 B
TypeScript
export function sleep(ms: number) {
|
|
const p = new Promise((resolve, reject) => {
|
|
setTimeout(resolve, ms);
|
|
});
|
|
return p;
|
|
}
|