UNPKG
@mapbox-vue3/env-layers
Version:
latest (1.0.0)
1.0.0
0.0.2
0.0.1
Mapbox Vue3 Component Library Env Layers
mapbox-web.github.io/mapbox-vue3/
@mapbox-vue3/env-layers
/
es
/
common
/
types.d.ts
7 lines
(6 loc)
•
274 B
TypeScript
View Raw
1
2
3
4
5
6
7
export
type
IndexAny
=
Record
<
string
,
any
>;
export
type
AnyFunc
=
(
...
args
:
any
[]
) =>
any
;
export
type
AnyNumberFunc
=
(
...
args
:
any
[]
) =>
number
;
export
type
AnyNumbersFunc
=
(
...
args
:
any
[]
) =>
number
[];
export
type
AnyArr
=
any
[];
export
type
EmptyFunction
=
() =>
void
;