sat-earth 0.8.37 → 0.8.39
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/packages/components/analysis-model/SatModelAnalysis.vue.d.ts +6 -1
- package/dist/packages/components/analysis-model/index.d.ts +6 -1
- package/dist/packages/components/analysis-spatial/SatSpatialAnalysis.vue.d.ts +6 -1
- package/dist/packages/components/analysis-spatial/index.d.ts +6 -1
- package/dist/packages/components/analysis-terrain/SatTerrainAnalysis.vue.d.ts +6 -1
- package/dist/packages/components/analysis-terrain/index.d.ts +6 -1
- package/dist/packages/components/globe/CameraBookmarkPanel.vue.d.ts +6 -1
- package/dist/packages/components/globe/SatGlobe.vue.d.ts +6 -1
- package/dist/packages/components/globe/index.d.ts +6 -1
- package/dist/packages/components/location/SatLocation.vue.d.ts +6 -1
- package/dist/packages/components/location/index.d.ts +6 -1
- package/dist/packages/components/map-part/SatMapPart.vue.d.ts +6 -1
- package/dist/packages/components/map-part/index.d.ts +6 -1
- package/dist/packages/components/measure/SatMeasure.vue.d.ts +6 -1
- package/dist/packages/components/measure/index.d.ts +6 -1
- package/dist/packages/components/panel/SatPanel.vue.d.ts +6 -1
- package/dist/packages/components/panel/index.d.ts +6 -1
- package/dist/packages/components/picture/SatPicture.vue.d.ts +6 -1
- package/dist/packages/components/picture/index.d.ts +6 -1
- package/dist/packages/components/plot/SatPlot.vue.d.ts +6 -1
- package/dist/packages/components/plot/index.d.ts +6 -1
- package/dist/packages/components/roam/SatRoam.vue.d.ts +6 -1
- package/dist/packages/components/roam/index.d.ts +6 -1
- package/dist/packages/components/source/SatSource.vue.d.ts +6 -1
- package/dist/packages/components/source/index.d.ts +6 -1
- package/dist/packages/components/task-view/SatTaskView.vue.d.ts +1 -2
- package/dist/packages/components/task-view/index.d.ts +1 -2
- package/dist/packages/components/types.d.ts +2 -1
- package/dist/packages/components/video-fusion/SatVideoFusion.vue.d.ts +6 -1
- package/dist/packages/components/video-fusion/index.d.ts +6 -1
- package/dist/packages/store/modules/taskView.d.ts +1 -0
- package/dist/sat-earth.mjs +1563 -1616
- package/dist/sat-earth.umd.js +4 -4
- package/dist/style.css +1 -1
- package/package.json +3 -1
|
@@ -54,7 +54,6 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
54
54
|
default: () => void;
|
|
55
55
|
};
|
|
56
56
|
}, {
|
|
57
|
-
mapCanvasEleId: string;
|
|
58
57
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
59
58
|
title: {
|
|
60
59
|
type: StringConstructor;
|
|
@@ -96,11 +95,13 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
96
95
|
default: () => void;
|
|
97
96
|
};
|
|
98
97
|
}>> & {}>>;
|
|
98
|
+
mapCanvasEleId: string;
|
|
99
99
|
record: import("vue").Ref<Record<string, import("../../store/modules/layout").LayoutState>>;
|
|
100
100
|
taskViewStore: import("pinia").Store<"SatTaskView__sat-earth", import("../../store/modules/taskView").TaskViewStateRecord, {}, {
|
|
101
101
|
initRecord(eleId: string): void;
|
|
102
102
|
removeRecord(eleId: string): void;
|
|
103
103
|
}>;
|
|
104
|
+
satPanelRef: import("vue").Ref<HTMLDivElement | undefined>;
|
|
104
105
|
draggable: import("vue").Ref<boolean>;
|
|
105
106
|
dragElement: import("vue").Ref<HTMLElement | null>;
|
|
106
107
|
style: import("vue").ComputedRef<string>;
|
|
@@ -108,6 +109,10 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
108
109
|
windowSizeMine: import("vue").Ref<"Maximize" | "Nomal">;
|
|
109
110
|
changeWindowSize: () => void;
|
|
110
111
|
doMinimize: (e: MouseEvent) => Promise<void>;
|
|
112
|
+
htmlObserver: {
|
|
113
|
+
isSupported: import("vue").Ref<boolean>;
|
|
114
|
+
stop: () => void;
|
|
115
|
+
};
|
|
111
116
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
112
117
|
title: {
|
|
113
118
|
type: StringConstructor;
|
|
@@ -55,7 +55,6 @@ declare const SatModelAnalysis: import('../../utils/installer').SFCWithInstall<i
|
|
|
55
55
|
default: () => void;
|
|
56
56
|
};
|
|
57
57
|
}, {
|
|
58
|
-
mapCanvasEleId: string;
|
|
59
58
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
60
59
|
title: {
|
|
61
60
|
type: StringConstructor;
|
|
@@ -97,11 +96,13 @@ declare const SatModelAnalysis: import('../../utils/installer').SFCWithInstall<i
|
|
|
97
96
|
default: () => void;
|
|
98
97
|
};
|
|
99
98
|
}>> & {}>>;
|
|
99
|
+
mapCanvasEleId: string;
|
|
100
100
|
record: import("vue").Ref<Record<string, import("../../store/modules/layout").LayoutState>>;
|
|
101
101
|
taskViewStore: import("pinia").Store<"SatTaskView__sat-earth", import("../../store/modules/taskView").TaskViewStateRecord, {}, {
|
|
102
102
|
initRecord(eleId: string): void;
|
|
103
103
|
removeRecord(eleId: string): void;
|
|
104
104
|
}>;
|
|
105
|
+
satPanelRef: import("vue").Ref<HTMLDivElement | undefined>;
|
|
105
106
|
draggable: import("vue").Ref<boolean>;
|
|
106
107
|
dragElement: import("vue").Ref<HTMLElement | null>;
|
|
107
108
|
style: import("vue").ComputedRef<string>;
|
|
@@ -109,6 +110,10 @@ declare const SatModelAnalysis: import('../../utils/installer').SFCWithInstall<i
|
|
|
109
110
|
windowSizeMine: import("vue").Ref<"Maximize" | "Nomal">;
|
|
110
111
|
changeWindowSize: () => void;
|
|
111
112
|
doMinimize: (e: MouseEvent) => Promise<void>;
|
|
113
|
+
htmlObserver: {
|
|
114
|
+
isSupported: import("vue").Ref<boolean>;
|
|
115
|
+
stop: () => void;
|
|
116
|
+
};
|
|
112
117
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
113
118
|
title: {
|
|
114
119
|
type: StringConstructor;
|
|
@@ -54,7 +54,6 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
54
54
|
default: () => void;
|
|
55
55
|
};
|
|
56
56
|
}, {
|
|
57
|
-
mapCanvasEleId: string;
|
|
58
57
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
59
58
|
title: {
|
|
60
59
|
type: StringConstructor;
|
|
@@ -96,11 +95,13 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
96
95
|
default: () => void;
|
|
97
96
|
};
|
|
98
97
|
}>> & {}>>;
|
|
98
|
+
mapCanvasEleId: string;
|
|
99
99
|
record: import("vue").Ref<Record<string, import("../../store/modules/layout").LayoutState>>;
|
|
100
100
|
taskViewStore: import("pinia").Store<"SatTaskView__sat-earth", import("../../store/modules/taskView").TaskViewStateRecord, {}, {
|
|
101
101
|
initRecord(eleId: string): void;
|
|
102
102
|
removeRecord(eleId: string): void;
|
|
103
103
|
}>;
|
|
104
|
+
satPanelRef: import("vue").Ref<HTMLDivElement | undefined>;
|
|
104
105
|
draggable: import("vue").Ref<boolean>;
|
|
105
106
|
dragElement: import("vue").Ref<HTMLElement | null>;
|
|
106
107
|
style: import("vue").ComputedRef<string>;
|
|
@@ -108,6 +109,10 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
108
109
|
windowSizeMine: import("vue").Ref<"Maximize" | "Nomal">;
|
|
109
110
|
changeWindowSize: () => void;
|
|
110
111
|
doMinimize: (e: MouseEvent) => Promise<void>;
|
|
112
|
+
htmlObserver: {
|
|
113
|
+
isSupported: import("vue").Ref<boolean>;
|
|
114
|
+
stop: () => void;
|
|
115
|
+
};
|
|
111
116
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
112
117
|
title: {
|
|
113
118
|
type: StringConstructor;
|
|
@@ -55,7 +55,6 @@ declare const SatSpatialAnalysis: import('../../utils/installer').SFCWithInstall
|
|
|
55
55
|
default: () => void;
|
|
56
56
|
};
|
|
57
57
|
}, {
|
|
58
|
-
mapCanvasEleId: string;
|
|
59
58
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
60
59
|
title: {
|
|
61
60
|
type: StringConstructor;
|
|
@@ -97,11 +96,13 @@ declare const SatSpatialAnalysis: import('../../utils/installer').SFCWithInstall
|
|
|
97
96
|
default: () => void;
|
|
98
97
|
};
|
|
99
98
|
}>> & {}>>;
|
|
99
|
+
mapCanvasEleId: string;
|
|
100
100
|
record: import("vue").Ref<Record<string, import("../../store/modules/layout").LayoutState>>;
|
|
101
101
|
taskViewStore: import("pinia").Store<"SatTaskView__sat-earth", import("../../store/modules/taskView").TaskViewStateRecord, {}, {
|
|
102
102
|
initRecord(eleId: string): void;
|
|
103
103
|
removeRecord(eleId: string): void;
|
|
104
104
|
}>;
|
|
105
|
+
satPanelRef: import("vue").Ref<HTMLDivElement | undefined>;
|
|
105
106
|
draggable: import("vue").Ref<boolean>;
|
|
106
107
|
dragElement: import("vue").Ref<HTMLElement | null>;
|
|
107
108
|
style: import("vue").ComputedRef<string>;
|
|
@@ -109,6 +110,10 @@ declare const SatSpatialAnalysis: import('../../utils/installer').SFCWithInstall
|
|
|
109
110
|
windowSizeMine: import("vue").Ref<"Maximize" | "Nomal">;
|
|
110
111
|
changeWindowSize: () => void;
|
|
111
112
|
doMinimize: (e: MouseEvent) => Promise<void>;
|
|
113
|
+
htmlObserver: {
|
|
114
|
+
isSupported: import("vue").Ref<boolean>;
|
|
115
|
+
stop: () => void;
|
|
116
|
+
};
|
|
112
117
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
113
118
|
title: {
|
|
114
119
|
type: StringConstructor;
|
|
@@ -54,7 +54,6 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
54
54
|
default: () => void;
|
|
55
55
|
};
|
|
56
56
|
}, {
|
|
57
|
-
mapCanvasEleId: string;
|
|
58
57
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
59
58
|
title: {
|
|
60
59
|
type: StringConstructor;
|
|
@@ -96,11 +95,13 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
96
95
|
default: () => void;
|
|
97
96
|
};
|
|
98
97
|
}>> & {}>>;
|
|
98
|
+
mapCanvasEleId: string;
|
|
99
99
|
record: import("vue").Ref<Record<string, import("../../store/modules/layout").LayoutState>>;
|
|
100
100
|
taskViewStore: import("pinia").Store<"SatTaskView__sat-earth", import("../../store/modules/taskView").TaskViewStateRecord, {}, {
|
|
101
101
|
initRecord(eleId: string): void;
|
|
102
102
|
removeRecord(eleId: string): void;
|
|
103
103
|
}>;
|
|
104
|
+
satPanelRef: import("vue").Ref<HTMLDivElement | undefined>;
|
|
104
105
|
draggable: import("vue").Ref<boolean>;
|
|
105
106
|
dragElement: import("vue").Ref<HTMLElement | null>;
|
|
106
107
|
style: import("vue").ComputedRef<string>;
|
|
@@ -108,6 +109,10 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
108
109
|
windowSizeMine: import("vue").Ref<"Maximize" | "Nomal">;
|
|
109
110
|
changeWindowSize: () => void;
|
|
110
111
|
doMinimize: (e: MouseEvent) => Promise<void>;
|
|
112
|
+
htmlObserver: {
|
|
113
|
+
isSupported: import("vue").Ref<boolean>;
|
|
114
|
+
stop: () => void;
|
|
115
|
+
};
|
|
111
116
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
112
117
|
title: {
|
|
113
118
|
type: StringConstructor;
|
|
@@ -55,7 +55,6 @@ declare const SatTerrainAnalysis: import('../../utils/installer').SFCWithInstall
|
|
|
55
55
|
default: () => void;
|
|
56
56
|
};
|
|
57
57
|
}, {
|
|
58
|
-
mapCanvasEleId: string;
|
|
59
58
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
60
59
|
title: {
|
|
61
60
|
type: StringConstructor;
|
|
@@ -97,11 +96,13 @@ declare const SatTerrainAnalysis: import('../../utils/installer').SFCWithInstall
|
|
|
97
96
|
default: () => void;
|
|
98
97
|
};
|
|
99
98
|
}>> & {}>>;
|
|
99
|
+
mapCanvasEleId: string;
|
|
100
100
|
record: import("vue").Ref<Record<string, import("../../store/modules/layout").LayoutState>>;
|
|
101
101
|
taskViewStore: import("pinia").Store<"SatTaskView__sat-earth", import("../../store/modules/taskView").TaskViewStateRecord, {}, {
|
|
102
102
|
initRecord(eleId: string): void;
|
|
103
103
|
removeRecord(eleId: string): void;
|
|
104
104
|
}>;
|
|
105
|
+
satPanelRef: import("vue").Ref<HTMLDivElement | undefined>;
|
|
105
106
|
draggable: import("vue").Ref<boolean>;
|
|
106
107
|
dragElement: import("vue").Ref<HTMLElement | null>;
|
|
107
108
|
style: import("vue").ComputedRef<string>;
|
|
@@ -109,6 +110,10 @@ declare const SatTerrainAnalysis: import('../../utils/installer').SFCWithInstall
|
|
|
109
110
|
windowSizeMine: import("vue").Ref<"Maximize" | "Nomal">;
|
|
110
111
|
changeWindowSize: () => void;
|
|
111
112
|
doMinimize: (e: MouseEvent) => Promise<void>;
|
|
113
|
+
htmlObserver: {
|
|
114
|
+
isSupported: import("vue").Ref<boolean>;
|
|
115
|
+
stop: () => void;
|
|
116
|
+
};
|
|
112
117
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
113
118
|
title: {
|
|
114
119
|
type: StringConstructor;
|
|
@@ -72,7 +72,6 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
72
72
|
default: () => void;
|
|
73
73
|
};
|
|
74
74
|
}, {
|
|
75
|
-
mapCanvasEleId: string;
|
|
76
75
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
77
76
|
title: {
|
|
78
77
|
type: StringConstructor;
|
|
@@ -114,11 +113,13 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
114
113
|
default: () => void;
|
|
115
114
|
};
|
|
116
115
|
}>> & {}>>;
|
|
116
|
+
mapCanvasEleId: string;
|
|
117
117
|
record: import("vue").Ref<Record<string, import('../../store/modules/layout').LayoutState>>;
|
|
118
118
|
taskViewStore: import("pinia").Store<"SatTaskView__sat-earth", import("../../store/modules/taskView").TaskViewStateRecord, {}, {
|
|
119
119
|
initRecord(eleId: string): void;
|
|
120
120
|
removeRecord(eleId: string): void;
|
|
121
121
|
}>;
|
|
122
|
+
satPanelRef: import("vue").Ref<HTMLDivElement | undefined>;
|
|
122
123
|
draggable: import("vue").Ref<boolean>;
|
|
123
124
|
dragElement: import("vue").Ref<HTMLElement | null>;
|
|
124
125
|
style: import("vue").ComputedRef<string>;
|
|
@@ -126,6 +127,10 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
126
127
|
windowSizeMine: import("vue").Ref<"Maximize" | "Nomal">;
|
|
127
128
|
changeWindowSize: () => void;
|
|
128
129
|
doMinimize: (e: MouseEvent) => Promise<void>;
|
|
130
|
+
htmlObserver: {
|
|
131
|
+
isSupported: import("vue").Ref<boolean>;
|
|
132
|
+
stop: () => void;
|
|
133
|
+
};
|
|
129
134
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
130
135
|
title: {
|
|
131
136
|
type: StringConstructor;
|
|
@@ -175,7 +175,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
175
175
|
default: () => void;
|
|
176
176
|
};
|
|
177
177
|
}, {
|
|
178
|
-
mapCanvasEleId: string;
|
|
179
178
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
180
179
|
title: {
|
|
181
180
|
type: StringConstructor;
|
|
@@ -217,11 +216,13 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
217
216
|
default: () => void;
|
|
218
217
|
};
|
|
219
218
|
}>> & {}>>;
|
|
219
|
+
mapCanvasEleId: string;
|
|
220
220
|
record: import("vue").Ref<Record<string, import('../../store/modules/layout').LayoutState>>;
|
|
221
221
|
taskViewStore: import("pinia").Store<"SatTaskView__sat-earth", import("../../store/modules/taskView").TaskViewStateRecord, {}, {
|
|
222
222
|
initRecord(eleId: string): void;
|
|
223
223
|
removeRecord(eleId: string): void;
|
|
224
224
|
}>;
|
|
225
|
+
satPanelRef: import("vue").Ref<HTMLDivElement | undefined>;
|
|
225
226
|
draggable: import("vue").Ref<boolean>;
|
|
226
227
|
dragElement: import("vue").Ref<HTMLElement | null>;
|
|
227
228
|
style: import("vue").ComputedRef<string>;
|
|
@@ -229,6 +230,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
229
230
|
windowSizeMine: import("vue").Ref<"Maximize" | "Nomal">;
|
|
230
231
|
changeWindowSize: () => void;
|
|
231
232
|
doMinimize: (e: MouseEvent) => Promise<void>;
|
|
233
|
+
htmlObserver: {
|
|
234
|
+
isSupported: import("vue").Ref<boolean>;
|
|
235
|
+
stop: () => void;
|
|
236
|
+
};
|
|
232
237
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
233
238
|
title: {
|
|
234
239
|
type: StringConstructor;
|
|
@@ -173,7 +173,6 @@ declare const SatGlobe: import('../../utils/installer').SFCWithInstall<import("v
|
|
|
173
173
|
default: () => void;
|
|
174
174
|
};
|
|
175
175
|
}, {
|
|
176
|
-
mapCanvasEleId: string;
|
|
177
176
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
178
177
|
title: {
|
|
179
178
|
type: StringConstructor;
|
|
@@ -215,11 +214,13 @@ declare const SatGlobe: import('../../utils/installer').SFCWithInstall<import("v
|
|
|
215
214
|
default: () => void;
|
|
216
215
|
};
|
|
217
216
|
}>> & {}>>;
|
|
217
|
+
mapCanvasEleId: string;
|
|
218
218
|
record: import("vue").Ref<Record<string, import("../../store/modules/layout").LayoutState>>;
|
|
219
219
|
taskViewStore: import("pinia").Store<"SatTaskView__sat-earth", import("../../store/modules/taskView").TaskViewStateRecord, {}, {
|
|
220
220
|
initRecord(eleId: string): void;
|
|
221
221
|
removeRecord(eleId: string): void;
|
|
222
222
|
}>;
|
|
223
|
+
satPanelRef: import("vue").Ref<HTMLDivElement | undefined>;
|
|
223
224
|
draggable: import("vue").Ref<boolean>;
|
|
224
225
|
dragElement: import("vue").Ref<HTMLElement | null>;
|
|
225
226
|
style: import("vue").ComputedRef<string>;
|
|
@@ -227,6 +228,10 @@ declare const SatGlobe: import('../../utils/installer').SFCWithInstall<import("v
|
|
|
227
228
|
windowSizeMine: import("vue").Ref<"Maximize" | "Nomal">;
|
|
228
229
|
changeWindowSize: () => void;
|
|
229
230
|
doMinimize: (e: MouseEvent) => Promise<void>;
|
|
231
|
+
htmlObserver: {
|
|
232
|
+
isSupported: import("vue").Ref<boolean>;
|
|
233
|
+
stop: () => void;
|
|
234
|
+
};
|
|
230
235
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
231
236
|
title: {
|
|
232
237
|
type: StringConstructor;
|
|
@@ -54,7 +54,6 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
54
54
|
default: () => void;
|
|
55
55
|
};
|
|
56
56
|
}, {
|
|
57
|
-
mapCanvasEleId: string;
|
|
58
57
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
59
58
|
title: {
|
|
60
59
|
type: StringConstructor;
|
|
@@ -96,11 +95,13 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
96
95
|
default: () => void;
|
|
97
96
|
};
|
|
98
97
|
}>> & {}>>;
|
|
98
|
+
mapCanvasEleId: string;
|
|
99
99
|
record: import("vue").Ref<Record<string, import("../../store/modules/layout").LayoutState>>;
|
|
100
100
|
taskViewStore: import("pinia").Store<"SatTaskView__sat-earth", import("../../store/modules/taskView").TaskViewStateRecord, {}, {
|
|
101
101
|
initRecord(eleId: string): void;
|
|
102
102
|
removeRecord(eleId: string): void;
|
|
103
103
|
}>;
|
|
104
|
+
satPanelRef: import("vue").Ref<HTMLDivElement | undefined>;
|
|
104
105
|
draggable: import("vue").Ref<boolean>;
|
|
105
106
|
dragElement: import("vue").Ref<HTMLElement | null>;
|
|
106
107
|
style: import("vue").ComputedRef<string>;
|
|
@@ -108,6 +109,10 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
108
109
|
windowSizeMine: import("vue").Ref<"Maximize" | "Nomal">;
|
|
109
110
|
changeWindowSize: () => void;
|
|
110
111
|
doMinimize: (e: MouseEvent) => Promise<void>;
|
|
112
|
+
htmlObserver: {
|
|
113
|
+
isSupported: import("vue").Ref<boolean>;
|
|
114
|
+
stop: () => void;
|
|
115
|
+
};
|
|
111
116
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
112
117
|
title: {
|
|
113
118
|
type: StringConstructor;
|
|
@@ -55,7 +55,6 @@ declare const SatLocation: import('../../utils/installer').SFCWithInstall<import
|
|
|
55
55
|
default: () => void;
|
|
56
56
|
};
|
|
57
57
|
}, {
|
|
58
|
-
mapCanvasEleId: string;
|
|
59
58
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
60
59
|
title: {
|
|
61
60
|
type: StringConstructor;
|
|
@@ -97,11 +96,13 @@ declare const SatLocation: import('../../utils/installer').SFCWithInstall<import
|
|
|
97
96
|
default: () => void;
|
|
98
97
|
};
|
|
99
98
|
}>> & {}>>;
|
|
99
|
+
mapCanvasEleId: string;
|
|
100
100
|
record: import("vue").Ref<Record<string, import("../../store/modules/layout").LayoutState>>;
|
|
101
101
|
taskViewStore: import("pinia").Store<"SatTaskView__sat-earth", import("../../store/modules/taskView").TaskViewStateRecord, {}, {
|
|
102
102
|
initRecord(eleId: string): void;
|
|
103
103
|
removeRecord(eleId: string): void;
|
|
104
104
|
}>;
|
|
105
|
+
satPanelRef: import("vue").Ref<HTMLDivElement | undefined>;
|
|
105
106
|
draggable: import("vue").Ref<boolean>;
|
|
106
107
|
dragElement: import("vue").Ref<HTMLElement | null>;
|
|
107
108
|
style: import("vue").ComputedRef<string>;
|
|
@@ -109,6 +110,10 @@ declare const SatLocation: import('../../utils/installer').SFCWithInstall<import
|
|
|
109
110
|
windowSizeMine: import("vue").Ref<"Maximize" | "Nomal">;
|
|
110
111
|
changeWindowSize: () => void;
|
|
111
112
|
doMinimize: (e: MouseEvent) => Promise<void>;
|
|
113
|
+
htmlObserver: {
|
|
114
|
+
isSupported: import("vue").Ref<boolean>;
|
|
115
|
+
stop: () => void;
|
|
116
|
+
};
|
|
112
117
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
113
118
|
title: {
|
|
114
119
|
type: StringConstructor;
|
|
@@ -54,7 +54,6 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
54
54
|
default: () => void;
|
|
55
55
|
};
|
|
56
56
|
}, {
|
|
57
|
-
mapCanvasEleId: string;
|
|
58
57
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
59
58
|
title: {
|
|
60
59
|
type: StringConstructor;
|
|
@@ -96,11 +95,13 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
96
95
|
default: () => void;
|
|
97
96
|
};
|
|
98
97
|
}>> & {}>>;
|
|
98
|
+
mapCanvasEleId: string;
|
|
99
99
|
record: import("vue").Ref<Record<string, import("../../store/modules/layout").LayoutState>>;
|
|
100
100
|
taskViewStore: import("pinia").Store<"SatTaskView__sat-earth", import("../../store/modules/taskView").TaskViewStateRecord, {}, {
|
|
101
101
|
initRecord(eleId: string): void;
|
|
102
102
|
removeRecord(eleId: string): void;
|
|
103
103
|
}>;
|
|
104
|
+
satPanelRef: import("vue").Ref<HTMLDivElement | undefined>;
|
|
104
105
|
draggable: import("vue").Ref<boolean>;
|
|
105
106
|
dragElement: import("vue").Ref<HTMLElement | null>;
|
|
106
107
|
style: import("vue").ComputedRef<string>;
|
|
@@ -108,6 +109,10 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
108
109
|
windowSizeMine: import("vue").Ref<"Maximize" | "Nomal">;
|
|
109
110
|
changeWindowSize: () => void;
|
|
110
111
|
doMinimize: (e: MouseEvent) => Promise<void>;
|
|
112
|
+
htmlObserver: {
|
|
113
|
+
isSupported: import("vue").Ref<boolean>;
|
|
114
|
+
stop: () => void;
|
|
115
|
+
};
|
|
111
116
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
112
117
|
title: {
|
|
113
118
|
type: StringConstructor;
|
|
@@ -55,7 +55,6 @@ declare const SatMapPart: import('../../utils/installer').SFCWithInstall<import(
|
|
|
55
55
|
default: () => void;
|
|
56
56
|
};
|
|
57
57
|
}, {
|
|
58
|
-
mapCanvasEleId: string;
|
|
59
58
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
60
59
|
title: {
|
|
61
60
|
type: StringConstructor;
|
|
@@ -97,11 +96,13 @@ declare const SatMapPart: import('../../utils/installer').SFCWithInstall<import(
|
|
|
97
96
|
default: () => void;
|
|
98
97
|
};
|
|
99
98
|
}>> & {}>>;
|
|
99
|
+
mapCanvasEleId: string;
|
|
100
100
|
record: import("vue").Ref<Record<string, import("../../store/modules/layout").LayoutState>>;
|
|
101
101
|
taskViewStore: import("pinia").Store<"SatTaskView__sat-earth", import("../../store/modules/taskView").TaskViewStateRecord, {}, {
|
|
102
102
|
initRecord(eleId: string): void;
|
|
103
103
|
removeRecord(eleId: string): void;
|
|
104
104
|
}>;
|
|
105
|
+
satPanelRef: import("vue").Ref<HTMLDivElement | undefined>;
|
|
105
106
|
draggable: import("vue").Ref<boolean>;
|
|
106
107
|
dragElement: import("vue").Ref<HTMLElement | null>;
|
|
107
108
|
style: import("vue").ComputedRef<string>;
|
|
@@ -109,6 +110,10 @@ declare const SatMapPart: import('../../utils/installer').SFCWithInstall<import(
|
|
|
109
110
|
windowSizeMine: import("vue").Ref<"Maximize" | "Nomal">;
|
|
110
111
|
changeWindowSize: () => void;
|
|
111
112
|
doMinimize: (e: MouseEvent) => Promise<void>;
|
|
113
|
+
htmlObserver: {
|
|
114
|
+
isSupported: import("vue").Ref<boolean>;
|
|
115
|
+
stop: () => void;
|
|
116
|
+
};
|
|
112
117
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
113
118
|
title: {
|
|
114
119
|
type: StringConstructor;
|
|
@@ -54,7 +54,6 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
54
54
|
default: () => void;
|
|
55
55
|
};
|
|
56
56
|
}, {
|
|
57
|
-
mapCanvasEleId: string;
|
|
58
57
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
59
58
|
title: {
|
|
60
59
|
type: StringConstructor;
|
|
@@ -96,11 +95,13 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
96
95
|
default: () => void;
|
|
97
96
|
};
|
|
98
97
|
}>> & {}>>;
|
|
98
|
+
mapCanvasEleId: string;
|
|
99
99
|
record: import("vue").Ref<Record<string, import("../../store/modules/layout").LayoutState>>;
|
|
100
100
|
taskViewStore: import("pinia").Store<"SatTaskView__sat-earth", import("../../store/modules/taskView").TaskViewStateRecord, {}, {
|
|
101
101
|
initRecord(eleId: string): void;
|
|
102
102
|
removeRecord(eleId: string): void;
|
|
103
103
|
}>;
|
|
104
|
+
satPanelRef: import("vue").Ref<HTMLDivElement | undefined>;
|
|
104
105
|
draggable: import("vue").Ref<boolean>;
|
|
105
106
|
dragElement: import("vue").Ref<HTMLElement | null>;
|
|
106
107
|
style: import("vue").ComputedRef<string>;
|
|
@@ -108,6 +109,10 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
108
109
|
windowSizeMine: import("vue").Ref<"Maximize" | "Nomal">;
|
|
109
110
|
changeWindowSize: () => void;
|
|
110
111
|
doMinimize: (e: MouseEvent) => Promise<void>;
|
|
112
|
+
htmlObserver: {
|
|
113
|
+
isSupported: import("vue").Ref<boolean>;
|
|
114
|
+
stop: () => void;
|
|
115
|
+
};
|
|
111
116
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
112
117
|
title: {
|
|
113
118
|
type: StringConstructor;
|
|
@@ -55,7 +55,6 @@ declare const SatMeasure: import('../../utils/installer').SFCWithInstall<import(
|
|
|
55
55
|
default: () => void;
|
|
56
56
|
};
|
|
57
57
|
}, {
|
|
58
|
-
mapCanvasEleId: string;
|
|
59
58
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
60
59
|
title: {
|
|
61
60
|
type: StringConstructor;
|
|
@@ -97,11 +96,13 @@ declare const SatMeasure: import('../../utils/installer').SFCWithInstall<import(
|
|
|
97
96
|
default: () => void;
|
|
98
97
|
};
|
|
99
98
|
}>> & {}>>;
|
|
99
|
+
mapCanvasEleId: string;
|
|
100
100
|
record: import("vue").Ref<Record<string, import("../../store/modules/layout").LayoutState>>;
|
|
101
101
|
taskViewStore: import("pinia").Store<"SatTaskView__sat-earth", import("../../store/modules/taskView").TaskViewStateRecord, {}, {
|
|
102
102
|
initRecord(eleId: string): void;
|
|
103
103
|
removeRecord(eleId: string): void;
|
|
104
104
|
}>;
|
|
105
|
+
satPanelRef: import("vue").Ref<HTMLDivElement | undefined>;
|
|
105
106
|
draggable: import("vue").Ref<boolean>;
|
|
106
107
|
dragElement: import("vue").Ref<HTMLElement | null>;
|
|
107
108
|
style: import("vue").ComputedRef<string>;
|
|
@@ -109,6 +110,10 @@ declare const SatMeasure: import('../../utils/installer').SFCWithInstall<import(
|
|
|
109
110
|
windowSizeMine: import("vue").Ref<"Maximize" | "Nomal">;
|
|
110
111
|
changeWindowSize: () => void;
|
|
111
112
|
doMinimize: (e: MouseEvent) => Promise<void>;
|
|
113
|
+
htmlObserver: {
|
|
114
|
+
isSupported: import("vue").Ref<boolean>;
|
|
115
|
+
stop: () => void;
|
|
116
|
+
};
|
|
112
117
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
113
118
|
title: {
|
|
114
119
|
type: StringConstructor;
|
|
@@ -41,7 +41,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
41
41
|
default: () => void;
|
|
42
42
|
};
|
|
43
43
|
}, {
|
|
44
|
-
mapCanvasEleId: string;
|
|
45
44
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
46
45
|
title: {
|
|
47
46
|
type: StringConstructor;
|
|
@@ -83,11 +82,13 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
83
82
|
default: () => void;
|
|
84
83
|
};
|
|
85
84
|
}>> & {}>>;
|
|
85
|
+
mapCanvasEleId: string;
|
|
86
86
|
record: import("vue").Ref<Record<string, import('../../store/modules/layout').LayoutState>>;
|
|
87
87
|
taskViewStore: import("pinia").Store<"SatTaskView__sat-earth", import('../../store/modules/taskView').TaskViewStateRecord, {}, {
|
|
88
88
|
initRecord(eleId: string): void;
|
|
89
89
|
removeRecord(eleId: string): void;
|
|
90
90
|
}>;
|
|
91
|
+
satPanelRef: import("vue").Ref<HTMLDivElement | undefined>;
|
|
91
92
|
draggable: import("vue").Ref<boolean>;
|
|
92
93
|
dragElement: import("vue").Ref<HTMLElement | null>;
|
|
93
94
|
style: import("vue").ComputedRef<string>;
|
|
@@ -95,6 +96,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
95
96
|
windowSizeMine: import("vue").Ref<"Maximize" | "Nomal">;
|
|
96
97
|
changeWindowSize: () => void;
|
|
97
98
|
doMinimize: (e: MouseEvent) => Promise<void>;
|
|
99
|
+
htmlObserver: {
|
|
100
|
+
isSupported: import("vue").Ref<boolean>;
|
|
101
|
+
stop: () => void;
|
|
102
|
+
};
|
|
98
103
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
99
104
|
title: {
|
|
100
105
|
type: StringConstructor;
|
|
@@ -40,7 +40,6 @@ declare const SatPanel: import('../../utils/installer').SFCWithInstall<import("v
|
|
|
40
40
|
default: () => void;
|
|
41
41
|
};
|
|
42
42
|
}, {
|
|
43
|
-
mapCanvasEleId: string;
|
|
44
43
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
45
44
|
title: {
|
|
46
45
|
type: StringConstructor;
|
|
@@ -82,11 +81,13 @@ declare const SatPanel: import('../../utils/installer').SFCWithInstall<import("v
|
|
|
82
81
|
default: () => void;
|
|
83
82
|
};
|
|
84
83
|
}>> & {}>>;
|
|
84
|
+
mapCanvasEleId: string;
|
|
85
85
|
record: import("vue").Ref<Record<string, import("../../store/modules/layout").LayoutState>>;
|
|
86
86
|
taskViewStore: import("pinia").Store<"SatTaskView__sat-earth", import("../../store/modules/taskView").TaskViewStateRecord, {}, {
|
|
87
87
|
initRecord(eleId: string): void;
|
|
88
88
|
removeRecord(eleId: string): void;
|
|
89
89
|
}>;
|
|
90
|
+
satPanelRef: import("vue").Ref<HTMLDivElement | undefined>;
|
|
90
91
|
draggable: import("vue").Ref<boolean>;
|
|
91
92
|
dragElement: import("vue").Ref<HTMLElement | null>;
|
|
92
93
|
style: import("vue").ComputedRef<string>;
|
|
@@ -94,6 +95,10 @@ declare const SatPanel: import('../../utils/installer').SFCWithInstall<import("v
|
|
|
94
95
|
windowSizeMine: import("vue").Ref<"Maximize" | "Nomal">;
|
|
95
96
|
changeWindowSize: () => void;
|
|
96
97
|
doMinimize: (e: MouseEvent) => Promise<void>;
|
|
98
|
+
htmlObserver: {
|
|
99
|
+
isSupported: import("vue").Ref<boolean>;
|
|
100
|
+
stop: () => void;
|
|
101
|
+
};
|
|
97
102
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
98
103
|
title: {
|
|
99
104
|
type: StringConstructor;
|
|
@@ -59,7 +59,6 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
59
59
|
default: () => void;
|
|
60
60
|
};
|
|
61
61
|
}, {
|
|
62
|
-
mapCanvasEleId: string;
|
|
63
62
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
64
63
|
title: {
|
|
65
64
|
type: StringConstructor;
|
|
@@ -101,11 +100,13 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
101
100
|
default: () => void;
|
|
102
101
|
};
|
|
103
102
|
}>> & {}>>;
|
|
103
|
+
mapCanvasEleId: string;
|
|
104
104
|
record: Ref<Record<string, import("../../store/modules/layout").LayoutState>>;
|
|
105
105
|
taskViewStore: import("pinia").Store<"SatTaskView__sat-earth", import("../../store/modules/taskView").TaskViewStateRecord, {}, {
|
|
106
106
|
initRecord(eleId: string): void;
|
|
107
107
|
removeRecord(eleId: string): void;
|
|
108
108
|
}>;
|
|
109
|
+
satPanelRef: Ref<HTMLDivElement | undefined>;
|
|
109
110
|
draggable: Ref<boolean>;
|
|
110
111
|
dragElement: Ref<HTMLElement | null>;
|
|
111
112
|
style: import("vue").ComputedRef<string>;
|
|
@@ -113,6 +114,10 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
113
114
|
windowSizeMine: Ref<"Maximize" | "Nomal">;
|
|
114
115
|
changeWindowSize: () => void;
|
|
115
116
|
doMinimize: (e: MouseEvent) => Promise<void>;
|
|
117
|
+
htmlObserver: {
|
|
118
|
+
isSupported: Ref<boolean>;
|
|
119
|
+
stop: () => void;
|
|
120
|
+
};
|
|
116
121
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
117
122
|
title: {
|
|
118
123
|
type: StringConstructor;
|
|
@@ -60,7 +60,6 @@ declare const SatPicture: import('../../utils/installer').SFCWithInstall<import(
|
|
|
60
60
|
default: () => void;
|
|
61
61
|
};
|
|
62
62
|
}, {
|
|
63
|
-
mapCanvasEleId: string;
|
|
64
63
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
65
64
|
title: {
|
|
66
65
|
type: StringConstructor;
|
|
@@ -102,11 +101,13 @@ declare const SatPicture: import('../../utils/installer').SFCWithInstall<import(
|
|
|
102
101
|
default: () => void;
|
|
103
102
|
};
|
|
104
103
|
}>> & {}>>;
|
|
104
|
+
mapCanvasEleId: string;
|
|
105
105
|
record: Ref<Record<string, import("../../store/modules/layout").LayoutState>>;
|
|
106
106
|
taskViewStore: import("pinia").Store<"SatTaskView__sat-earth", import("../../store/modules/taskView").TaskViewStateRecord, {}, {
|
|
107
107
|
initRecord(eleId: string): void;
|
|
108
108
|
removeRecord(eleId: string): void;
|
|
109
109
|
}>;
|
|
110
|
+
satPanelRef: Ref<HTMLDivElement | undefined>;
|
|
110
111
|
draggable: Ref<boolean>;
|
|
111
112
|
dragElement: Ref<HTMLElement | null>;
|
|
112
113
|
style: import("vue").ComputedRef<string>;
|
|
@@ -114,6 +115,10 @@ declare const SatPicture: import('../../utils/installer').SFCWithInstall<import(
|
|
|
114
115
|
windowSizeMine: Ref<"Maximize" | "Nomal">;
|
|
115
116
|
changeWindowSize: () => void;
|
|
116
117
|
doMinimize: (e: MouseEvent) => Promise<void>;
|
|
118
|
+
htmlObserver: {
|
|
119
|
+
isSupported: Ref<boolean>;
|
|
120
|
+
stop: () => void;
|
|
121
|
+
};
|
|
117
122
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
118
123
|
title: {
|
|
119
124
|
type: StringConstructor;
|