TypeScript で sleep する方法のメモ。
■プログラム
■実行結果
■プログラム
import { setTimeout } from 'timers/promises'; (async () => { console.log('before wait'); await setTimeout(3000); console.log('after wait'); })();
■実行結果
before wait after wait