vue-cesium-jyt
Version:
Vue 3.x components for CesiumJS.
17 lines (16 loc) • 624 B
TypeScript
import type { Language } from 'vue-cesium/es/locale';
import type { InjectionKey, Ref } from 'vue';
import type { AnyObject } from './types';
export interface ConfigProviderContext {
cesiumPath?: string;
accessToken?: string;
locale?: Language;
cfg?: AnyObject;
__scriptPromise?: Promise<unknown>;
__viewerUnloadingPromise?: Promise<boolean>;
}
declare const vcKey: string | symbol;
declare const fabKey: string | symbol;
declare const measurementKey: string | symbol;
export { vcKey, fabKey, measurementKey };
export declare const configProviderContextKey: InjectionKey<Ref<ConfigProviderContext>>;