aboutsummaryrefslogtreecommitdiffstats
path: root/src/helpers
diff options
context:
space:
mode:
authorLibravatar Ricardo Cino <ricardo@cino.io>2022-06-26 23:59:32 +0200
committerLibravatar GitHub <noreply@github.com>2022-06-26 21:59:32 +0000
commit6bff2bb5439d25e0ab2a24a8ca1b28b89ef40ff9 (patch)
tree1676f5eef42b8086d28476c7eaad62c7b1753120 /src/helpers
parentReduce tab item layout shift (#376) (diff)
downloadferdium-app-6bff2bb5439d25e0ab2a24a8ca1b28b89ef40ff9.tar.gz
ferdium-app-6bff2bb5439d25e0ab2a24a8ca1b28b89ef40ff9.tar.zst
ferdium-app-6bff2bb5439d25e0ab2a24a8ca1b28b89ef40ff9.zip
chore: turned all auth containers into typescript (#375)
Diffstat (limited to 'src/helpers')
-rw-r--r--src/helpers/async-helpers.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/helpers/async-helpers.ts b/src/helpers/async-helpers.ts
index 56051b065..6556a0141 100644
--- a/src/helpers/async-helpers.ts
+++ b/src/helpers/async-helpers.ts
@@ -1,4 +1,4 @@
1export function sleep(ms: number = 0) { 1export function sleep(ms: number = 0): Promise<void> {
2 // eslint-disable-next-line no-promise-executor-return 2 // eslint-disable-next-line no-promise-executor-return
3 return new Promise(r => setTimeout(r, ms)); 3 return new Promise(r => setTimeout(r, ms));
4} 4}