UNPKG
meows
Version:
latest (1.91.0)
1.91.0
1.90.1
1.90.0
1.82.2
1.82.1
1.82.0
1.81.6
1.81.5
1.81.0
1.8.74
1.8.73
1.8.72
1.8.71
1.8.6
1.8.5
1.8.4
1.8.3
1.8.2
1.8.1
1.8.0
1.7.9
1.7.8
1.7.7
1.7.6
1.7.5
1.7.3
1.7.2
1.7.1
1.7.0
1.6.5
1.6.0
1.5.5
1.5.0
1.4.2
1.4.1
1.4.0
1.3.7
1.3.6
1.3.5
1.3.4
1.3.3
1.3.2
1.3.1
1.3.0
1.2.50
1.2.46
1.2.45
1.2.44
1.2.43
1.2.42
1.2.41
1.2.40
1.2.39
1.2.38
1.2.37
1.2.36
1.2.35
1.2.34
1.2.33
1.2.31
1.2.30
1.2.29
1.2.28
1.2.27
1.2.26
1.2.25
1.2.24
1.2.22
1.2.21
1.2.2
1.2.1
1.2.0
1.1.821
1.1.820
1.1.819
1.1.818
1.1.817
1.1.816
1.1.815
1.1.814
1.1.813
1.1.812
1.1.811
1.1.810
1.1.809
1.1.808
1.1.807
1.1.806
1.1.805
1.1.804
1.1.803
1.1.802
1.1.801
1.1.80
1.1.79
1.1.78
1.1.77
1.1.76
1.1.75
1.1.74
1.1.73
1.1.72
1.1.71
1.1.70
1.1.69
1.1.68
1.1.67
1.1.66
1.1.65
1.1.64
1.1.63
1.1.62
1.1.61
1.1.60
1.1.59
1.1.58
1.1.57
1.1.56
1.1.55
1.1.54
1.1.53
1.1.52
1.1.51
1.1.50
1.1.49
1.1.48
1.1.47
1.1.46
1.1.45
1.1.44
1.1.40
1.1.33
1.1.32
1.1.31
1.1.30
1.1.29
1.1.28
1.1.27
1.1.26
1.1.25
1.1.24
1.1.23
1.1.22
1.1.21
1.1.20
1.1.19
1.1.18
1.1.17
1.1.16
1.1.15
1.1.13
1.1.12
1.1.11
1.1.10
1.1.9
1.1.8
1.1.7
1.1.6
1.1.5
1.1.4
1.1.3
1.1.2
1.1.1
1.1.0
1.0.6
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
A kittybin of tools.
shiba-sama.github.io/utilities/
shiba-sama/utilities
meows
/
build
/
types
/
async.d.ts
9 lines
(8 loc)
•
255 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
/** * Promisified setTimeout that resolves to `any` or `void`. *
@example
* // logs 'hi' after delay * let hi = async () => await wait(4000, 'hi') * .then(console.log) */
export
declare
const
wait
:
(
ms
?:
number
,
resolveTo
?:
any
) =>
Promise
<
any
>;