@tak-ps/cloudtak 12.114.0 → 12.115.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/types/src/components/CloudTAK/Menu/Basemaps/EditModal.vue.d.ts +1 -0
- package/dist/types/src/components/CloudTAK/Menu/Basemaps/TypeSelector.vue.d.ts +2 -0
- package/dist/types/src/components/CloudTAK/Menu/Basemaps/TypeSelectorBase.vue.d.ts +8 -3
- package/dist/types/src/components/CloudTAK/Menu/Basemaps/TypeSelectorFeatureServer.vue.d.ts +8 -3
- package/dist/types/src/components/CloudTAK/Menu/Basemaps/TypeSelectorHosted.vue.d.ts +9 -0
- package/dist/types/src/components/CloudTAK/Menu/Basemaps/TypeSelectorImageServer.vue.d.ts +8 -3
- package/dist/types/src/components/CloudTAK/Menu/Basemaps/TypeSelectorMapServer.vue.d.ts +8 -3
- package/dist/types/src/components/CloudTAK/Menu/Basemaps/TypeSelectorZxy.vue.d.ts +8 -3
- package/dist/types/src/components/CloudTAK/Menu/Basemaps/types.d.ts +9 -2
- package/dist/types/src/components/CloudTAK/util/SearchBox.vue.d.ts +9 -0
- package/dist/types/src/components/CloudTAK/util/StandardItemBasemap.vue.d.ts +17 -0
- package/package.json +3 -2
- package/dist/types/src/components/CloudTAK/Menu/Basemaps/TypeSelectorQuadkey.vue.d.ts +0 -21
- /package/dist/types/src/components/CloudTAK/Menu/Basemaps/{TypeSelectorTilejson.vue.d.ts → TypeSelectorZxy_Tilejson.vue.d.ts} +0 -0
- /package/dist/types/src/components/CloudTAK/Menu/Basemaps/{TypeSelectorUpload.vue.d.ts → TypeSelectorZxy_Upload.vue.d.ts} +0 -0
|
@@ -13,6 +13,7 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {
|
|
|
13
13
|
updated: string;
|
|
14
14
|
name: string;
|
|
15
15
|
url: string;
|
|
16
|
+
protocol: "zxy" | "mapserver" | "imageserver" | "featureserver";
|
|
16
17
|
minzoom: number;
|
|
17
18
|
maxzoom: number;
|
|
18
19
|
format: "png" | "jpeg" | "mvt";
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
type __VLS_Props = {
|
|
2
2
|
modelValue?: string | null;
|
|
3
|
+
isSystemAdmin?: boolean;
|
|
3
4
|
};
|
|
4
5
|
declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
5
6
|
select: (value: string) => any;
|
|
@@ -9,6 +10,7 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {
|
|
|
9
10
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
10
11
|
}>, {
|
|
11
12
|
modelValue: string | null;
|
|
13
|
+
isSystemAdmin: boolean;
|
|
12
14
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
13
15
|
declare const _default: typeof __VLS_export;
|
|
14
16
|
export default _default;
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import type { BasemapSourceType, EditingBasemap, VectorLayerDescriptor } from './types.ts';
|
|
2
2
|
type __VLS_Props = {
|
|
3
3
|
basemapId?: number;
|
|
4
|
-
editing: EditingBasemap;
|
|
5
4
|
vectorLayers: VectorLayerDescriptor[];
|
|
6
5
|
errors: Record<'name' | 'url', string>;
|
|
7
6
|
type: BasemapSourceType;
|
|
@@ -9,18 +8,24 @@ type __VLS_Props = {
|
|
|
9
8
|
warnSharing: boolean;
|
|
10
9
|
isSystemAdmin: boolean;
|
|
11
10
|
};
|
|
11
|
+
type __VLS_ModelProps = {
|
|
12
|
+
'editing': EditingBasemap;
|
|
13
|
+
};
|
|
14
|
+
type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
|
|
12
15
|
declare var __VLS_69: {};
|
|
13
16
|
type __VLS_Slots = {} & {
|
|
14
17
|
advanced?: (props: typeof __VLS_69) => any;
|
|
15
18
|
};
|
|
16
|
-
declare const __VLS_base: import("vue").DefineComponent<
|
|
19
|
+
declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
17
20
|
"change-type": () => any;
|
|
18
21
|
"update:scope": (value: "user" | "server") => any;
|
|
19
22
|
"update:warnSharing": (value: boolean) => any;
|
|
20
|
-
|
|
23
|
+
"update:editing": (value: EditingBasemap) => any;
|
|
24
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
21
25
|
"onChange-type"?: (() => any) | undefined;
|
|
22
26
|
"onUpdate:scope"?: ((value: "user" | "server") => any) | undefined;
|
|
23
27
|
"onUpdate:warnSharing"?: ((value: boolean) => any) | undefined;
|
|
28
|
+
"onUpdate:editing"?: ((value: EditingBasemap) => any) | undefined;
|
|
24
29
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
25
30
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
26
31
|
declare const _default: typeof __VLS_export;
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import type { EditingBasemap, VectorLayerDescriptor } from './types.ts';
|
|
2
2
|
type __VLS_Props = {
|
|
3
3
|
basemapId?: number;
|
|
4
|
-
editing: EditingBasemap;
|
|
5
4
|
vectorLayers: VectorLayerDescriptor[];
|
|
6
5
|
errors: Record<'name' | 'url', string>;
|
|
7
6
|
scope: 'user' | 'server';
|
|
@@ -9,17 +8,23 @@ type __VLS_Props = {
|
|
|
9
8
|
isSystemAdmin: boolean;
|
|
10
9
|
url: string;
|
|
11
10
|
};
|
|
12
|
-
|
|
11
|
+
type __VLS_ModelProps = {
|
|
12
|
+
'editing': EditingBasemap;
|
|
13
|
+
};
|
|
14
|
+
type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
|
|
15
|
+
declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
13
16
|
fetch: () => any;
|
|
14
17
|
"change-type": () => any;
|
|
15
18
|
"update:scope": (value: "user" | "server") => any;
|
|
16
19
|
"update:warnSharing": (value: boolean) => any;
|
|
20
|
+
"update:editing": (value: EditingBasemap) => any;
|
|
17
21
|
"update:url": (value: string) => any;
|
|
18
|
-
}, string, import("vue").PublicProps, Readonly<
|
|
22
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
19
23
|
onFetch?: (() => any) | undefined;
|
|
20
24
|
"onChange-type"?: (() => any) | undefined;
|
|
21
25
|
"onUpdate:scope"?: ((value: "user" | "server") => any) | undefined;
|
|
22
26
|
"onUpdate:warnSharing"?: ((value: boolean) => any) | undefined;
|
|
27
|
+
"onUpdate:editing"?: ((value: EditingBasemap) => any) | undefined;
|
|
23
28
|
"onUpdate:url"?: ((value: string) => any) | undefined;
|
|
24
29
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
25
30
|
declare const _default: typeof __VLS_export;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
declare const __VLS_export: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
2
|
+
done: (value: unknown) => any;
|
|
3
|
+
"change-type": () => any;
|
|
4
|
+
}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{
|
|
5
|
+
onDone?: ((value: unknown) => any) | undefined;
|
|
6
|
+
"onChange-type"?: (() => any) | undefined;
|
|
7
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
8
|
+
declare const _default: typeof __VLS_export;
|
|
9
|
+
export default _default;
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import type { EditingBasemap, VectorLayerDescriptor } from './types.ts';
|
|
2
2
|
type __VLS_Props = {
|
|
3
3
|
basemapId?: number;
|
|
4
|
-
editing: EditingBasemap;
|
|
5
4
|
vectorLayers: VectorLayerDescriptor[];
|
|
6
5
|
errors: Record<'name' | 'url', string>;
|
|
7
6
|
scope: 'user' | 'server';
|
|
@@ -9,17 +8,23 @@ type __VLS_Props = {
|
|
|
9
8
|
isSystemAdmin: boolean;
|
|
10
9
|
url: string;
|
|
11
10
|
};
|
|
12
|
-
|
|
11
|
+
type __VLS_ModelProps = {
|
|
12
|
+
'editing': EditingBasemap;
|
|
13
|
+
};
|
|
14
|
+
type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
|
|
15
|
+
declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
13
16
|
fetch: () => any;
|
|
14
17
|
"change-type": () => any;
|
|
15
18
|
"update:scope": (value: "user" | "server") => any;
|
|
16
19
|
"update:warnSharing": (value: boolean) => any;
|
|
20
|
+
"update:editing": (value: EditingBasemap) => any;
|
|
17
21
|
"update:url": (value: string) => any;
|
|
18
|
-
}, string, import("vue").PublicProps, Readonly<
|
|
22
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
19
23
|
onFetch?: (() => any) | undefined;
|
|
20
24
|
"onChange-type"?: (() => any) | undefined;
|
|
21
25
|
"onUpdate:scope"?: ((value: "user" | "server") => any) | undefined;
|
|
22
26
|
"onUpdate:warnSharing"?: ((value: boolean) => any) | undefined;
|
|
27
|
+
"onUpdate:editing"?: ((value: EditingBasemap) => any) | undefined;
|
|
23
28
|
"onUpdate:url"?: ((value: string) => any) | undefined;
|
|
24
29
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
25
30
|
declare const _default: typeof __VLS_export;
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import type { EditingBasemap, VectorLayerDescriptor } from './types.ts';
|
|
2
2
|
type __VLS_Props = {
|
|
3
3
|
basemapId?: number;
|
|
4
|
-
editing: EditingBasemap;
|
|
5
4
|
vectorLayers: VectorLayerDescriptor[];
|
|
6
5
|
errors: Record<'name' | 'url', string>;
|
|
7
6
|
scope: 'user' | 'server';
|
|
@@ -9,17 +8,23 @@ type __VLS_Props = {
|
|
|
9
8
|
isSystemAdmin: boolean;
|
|
10
9
|
url: string;
|
|
11
10
|
};
|
|
12
|
-
|
|
11
|
+
type __VLS_ModelProps = {
|
|
12
|
+
'editing': EditingBasemap;
|
|
13
|
+
};
|
|
14
|
+
type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
|
|
15
|
+
declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
13
16
|
fetch: () => any;
|
|
14
17
|
"change-type": () => any;
|
|
15
18
|
"update:scope": (value: "user" | "server") => any;
|
|
16
19
|
"update:warnSharing": (value: boolean) => any;
|
|
20
|
+
"update:editing": (value: EditingBasemap) => any;
|
|
17
21
|
"update:url": (value: string) => any;
|
|
18
|
-
}, string, import("vue").PublicProps, Readonly<
|
|
22
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
19
23
|
onFetch?: (() => any) | undefined;
|
|
20
24
|
"onChange-type"?: (() => any) | undefined;
|
|
21
25
|
"onUpdate:scope"?: ((value: "user" | "server") => any) | undefined;
|
|
22
26
|
"onUpdate:warnSharing"?: ((value: boolean) => any) | undefined;
|
|
27
|
+
"onUpdate:editing"?: ((value: EditingBasemap) => any) | undefined;
|
|
23
28
|
"onUpdate:url"?: ((value: string) => any) | undefined;
|
|
24
29
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
25
30
|
declare const _default: typeof __VLS_export;
|
|
@@ -1,21 +1,26 @@
|
|
|
1
1
|
import type { EditingBasemap, VectorLayerDescriptor } from './types.ts';
|
|
2
2
|
type __VLS_Props = {
|
|
3
3
|
basemapId?: number;
|
|
4
|
-
editing: EditingBasemap;
|
|
5
4
|
vectorLayers: VectorLayerDescriptor[];
|
|
6
5
|
errors: Record<'name' | 'url', string>;
|
|
7
6
|
scope: 'user' | 'server';
|
|
8
7
|
warnSharing: boolean;
|
|
9
8
|
isSystemAdmin: boolean;
|
|
10
9
|
};
|
|
11
|
-
|
|
10
|
+
type __VLS_ModelProps = {
|
|
11
|
+
'editing': EditingBasemap;
|
|
12
|
+
};
|
|
13
|
+
type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
|
|
14
|
+
declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
12
15
|
"change-type": () => any;
|
|
13
16
|
"update:scope": (value: "user" | "server") => any;
|
|
14
17
|
"update:warnSharing": (value: boolean) => any;
|
|
15
|
-
|
|
18
|
+
"update:editing": (value: EditingBasemap) => any;
|
|
19
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
16
20
|
"onChange-type"?: (() => any) | undefined;
|
|
17
21
|
"onUpdate:scope"?: ((value: "user" | "server") => any) | undefined;
|
|
18
22
|
"onUpdate:warnSharing"?: ((value: boolean) => any) | undefined;
|
|
23
|
+
"onUpdate:editing"?: ((value: EditingBasemap) => any) | undefined;
|
|
19
24
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
20
25
|
declare const _default: typeof __VLS_export;
|
|
21
26
|
export default _default;
|
|
@@ -24,6 +24,13 @@ export interface EditingBasemap {
|
|
|
24
24
|
center: number[];
|
|
25
25
|
collection: string;
|
|
26
26
|
title: string;
|
|
27
|
+
overlay: boolean;
|
|
28
|
+
hidden: boolean;
|
|
29
|
+
frequency: number | null;
|
|
30
|
+
snapping_enabled: boolean;
|
|
31
|
+
snapping_layer: string;
|
|
32
|
+
styles: unknown[];
|
|
33
|
+
tilejson: string;
|
|
27
34
|
}
|
|
28
35
|
export interface VectorLayerFieldMap {
|
|
29
36
|
[key: string]: unknown;
|
|
@@ -35,7 +42,7 @@ export interface VectorLayerDescriptor {
|
|
|
35
42
|
export type BasemapImport = paths['/api/basemap']['put']['responses']['200']['content']['application/json'] & {
|
|
36
43
|
vector_layers?: VectorLayerDescriptor[];
|
|
37
44
|
};
|
|
38
|
-
export type BasemapSourceType = 'zxy' | '
|
|
45
|
+
export type BasemapSourceType = 'zxy' | 'imageserver' | 'mapserver' | 'featureserver' | 'tilejson' | 'upload' | 'hosted';
|
|
39
46
|
export declare const BasemapTypeConfig: Record<BasemapSourceType, {
|
|
40
47
|
label: string;
|
|
41
48
|
description: string;
|
|
@@ -50,5 +57,5 @@ export declare const BasemapTypeConfig: Record<BasemapSourceType, {
|
|
|
50
57
|
defaults: Pick<EditingBasemap, 'type' | 'format' | 'minzoom' | 'maxzoom' | 'tilesize'>;
|
|
51
58
|
}>;
|
|
52
59
|
export declare function inferBasemapType(url?: string | null): BasemapSourceType | null;
|
|
53
|
-
export declare function normalizeEditing(data: Basemap | BasemapImport): EditingBasemap;
|
|
60
|
+
export declare function normalizeEditing(data: Basemap | BasemapImport | BasemapListItem): EditingBasemap;
|
|
54
61
|
export type BasemapListItem = Partial<BasemapList['items'][0]>;
|
|
@@ -15,6 +15,10 @@ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractP
|
|
|
15
15
|
type: BooleanConstructor;
|
|
16
16
|
default: boolean;
|
|
17
17
|
};
|
|
18
|
+
initialValue: {
|
|
19
|
+
type: StringConstructor;
|
|
20
|
+
default: string;
|
|
21
|
+
};
|
|
18
22
|
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
19
23
|
select: (...args: any[]) => void;
|
|
20
24
|
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
@@ -34,6 +38,10 @@ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractP
|
|
|
34
38
|
type: BooleanConstructor;
|
|
35
39
|
default: boolean;
|
|
36
40
|
};
|
|
41
|
+
initialValue: {
|
|
42
|
+
type: StringConstructor;
|
|
43
|
+
default: string;
|
|
44
|
+
};
|
|
37
45
|
}>> & Readonly<{
|
|
38
46
|
onSelect?: ((...args: any[]) => any) | undefined;
|
|
39
47
|
}>, {
|
|
@@ -41,6 +49,7 @@ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractP
|
|
|
41
49
|
autofocus: boolean;
|
|
42
50
|
placeholder: string;
|
|
43
51
|
locationPicker: boolean;
|
|
52
|
+
initialValue: string;
|
|
44
53
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
45
54
|
declare const _default: typeof __VLS_export;
|
|
46
55
|
export default _default;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import type { Basemap } from '../../../types.ts';
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
basemap: Basemap;
|
|
4
|
+
};
|
|
5
|
+
declare var __VLS_25: {};
|
|
6
|
+
type __VLS_Slots = {} & {
|
|
7
|
+
actions?: (props: typeof __VLS_25) => any;
|
|
8
|
+
};
|
|
9
|
+
declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
10
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
11
|
+
declare const _default: typeof __VLS_export;
|
|
12
|
+
export default _default;
|
|
13
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
14
|
+
new (): {
|
|
15
|
+
$slots: S;
|
|
16
|
+
};
|
|
17
|
+
};
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tak-ps/cloudtak",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "12.
|
|
4
|
+
"version": "12.115.0",
|
|
5
5
|
"types": "dist/types/plugin.d.ts",
|
|
6
6
|
"files": [
|
|
7
7
|
"dist/types"
|
|
@@ -59,6 +59,7 @@
|
|
|
59
59
|
"floating-vue": "^2.0.0-beta.17",
|
|
60
60
|
"geo-coordinates-parser": "^1.7.4",
|
|
61
61
|
"geomagnetism": "^0.2.0",
|
|
62
|
+
"handlebars": "^4.7.9",
|
|
62
63
|
"hls.js": "^1.6.5",
|
|
63
64
|
"imask": "^6.0.0",
|
|
64
65
|
"jsonata": "^2.0.4",
|
|
@@ -110,4 +111,4 @@
|
|
|
110
111
|
"> 1%",
|
|
111
112
|
"last 2 versions"
|
|
112
113
|
]
|
|
113
|
-
}
|
|
114
|
+
}
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
import type { EditingBasemap, VectorLayerDescriptor } from './types.ts';
|
|
2
|
-
type __VLS_Props = {
|
|
3
|
-
basemapId?: number;
|
|
4
|
-
editing: EditingBasemap;
|
|
5
|
-
vectorLayers: VectorLayerDescriptor[];
|
|
6
|
-
errors: Record<'name' | 'url', string>;
|
|
7
|
-
scope: 'user' | 'server';
|
|
8
|
-
warnSharing: boolean;
|
|
9
|
-
isSystemAdmin: boolean;
|
|
10
|
-
};
|
|
11
|
-
declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
12
|
-
"change-type": () => any;
|
|
13
|
-
"update:scope": (value: "user" | "server") => any;
|
|
14
|
-
"update:warnSharing": (value: boolean) => any;
|
|
15
|
-
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
16
|
-
"onChange-type"?: (() => any) | undefined;
|
|
17
|
-
"onUpdate:scope"?: ((value: "user" | "server") => any) | undefined;
|
|
18
|
-
"onUpdate:warnSharing"?: ((value: boolean) => any) | undefined;
|
|
19
|
-
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
20
|
-
declare const _default: typeof __VLS_export;
|
|
21
|
-
export default _default;
|
|
File without changes
|