index.d.ts 451 B

123456789
  1. import { GeoView } from './geoView';
  2. import { GeoPath } from './geoPath';
  3. export { GeoView, GeoPath };
  4. export type { GeoViewOptions } from './geoView';
  5. export type { GeoPathOptions } from './geoPath';
  6. export declare const geoLibrary: {
  7. 'composition.geoView': import("../runtime").CompositionComponent<import("./geoView").GeoViewOptions>;
  8. 'composition.geoPath': import("../runtime").CompositionComponent<import("./geoPath").GeoPathOptions>;
  9. };