mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-15 01:03:03 +08:00
7 lines
126 B
TypeScript
7 lines
126 B
TypeScript
|
|
export function sleep(duration: number = 300) {
|
|
return new Promise(resolve => {
|
|
setTimeout(resolve, duration);
|
|
});
|
|
}
|