跳转到内容

Sleep

ts
export function sleep(ms: number){
  return new Promise((resolve) => setTimeout(resolve, ms))
}