sat-earth 3.0.7 → 3.0.8
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/dts/components/location/SatLocation.vue.d.ts +2 -0
- package/dist/dts/components/location/SatLocationMain.vue.d.ts +11 -1
- package/dist/dts/components/location/index.d.ts +2 -0
- package/dist/dts/types/global.d.ts +2 -2
- package/dist/sat-earth.mjs +837 -816
- package/dist/style.css +1 -1
- package/package.json +1 -1
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
declare function __VLS_template(): {
|
|
2
2
|
default?(_: {}): any;
|
|
3
|
+
poi?(_: {}): any;
|
|
4
|
+
path?(_: {}): any;
|
|
3
5
|
};
|
|
4
6
|
declare const __VLS_component: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
5
7
|
initHooks: () => void;
|
|
@@ -1,2 +1,12 @@
|
|
|
1
|
-
declare
|
|
1
|
+
declare function __VLS_template(): {
|
|
2
|
+
poi?(_: {}): any;
|
|
3
|
+
path?(_: {}): any;
|
|
4
|
+
};
|
|
5
|
+
declare const __VLS_component: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
6
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
2
7
|
export default _default;
|
|
8
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
9
|
+
new (): {
|
|
10
|
+
$slots: S;
|
|
11
|
+
};
|
|
12
|
+
};
|
|
@@ -30,6 +30,8 @@ declare const SatLocation: import('../../utils/installer').SFCWithInstall<{
|
|
|
30
30
|
}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
31
31
|
$slots: {
|
|
32
32
|
default?(_: {}): any;
|
|
33
|
+
poi?(_: {}): any;
|
|
34
|
+
path?(_: {}): any;
|
|
33
35
|
};
|
|
34
36
|
})>;
|
|
35
37
|
export { SatLocationSFC, SatLocation, };
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import type * as TurfType from '@turf/turf'
|
|
2
|
-
import type * as
|
|
2
|
+
import type * as Mars3dType from 'mars3d'
|
|
3
3
|
|
|
4
4
|
declare global {
|
|
5
|
-
const Cesium: typeof
|
|
5
|
+
const Cesium: typeof Mars3dType.Cesium
|
|
6
6
|
const turf: typeof TurfType
|
|
7
7
|
interface Window {
|
|
8
8
|
Cesium: typeof Cesium
|