index.d.ts 1.1 KB

12345678910111213141516171819
  1. import { latLngDegreesToDecimal, latLngDecimalToDegrees } from './Utils';
  2. export declare function getShapesSelector(airspaceInfos: any, style: any, currentAirspaceIndex: any): {
  3. markers: import("reselect").OutputSelector<{}, any[], (res1: any, res2: any, res3: any) => any[]>;
  4. circles: import("reselect").OutputSelector<{}, any, (res: any) => any>;
  5. lines: import("reselect").OutputSelector<{}, any, (res: any) => any>;
  6. polygons: import("reselect").OutputSelector<{}, any[], (res1: any, res2: any) => any[]>;
  7. regionPoints: import("reselect").OutputSelector<{}, any[], (res1: any, res2: any, res3: any) => any[]>;
  8. };
  9. export declare function getShapes(airspaceInfos: any, style: any, currentAirspaceIndex: any): {
  10. markers: any[];
  11. circles: any;
  12. lines: any;
  13. polygons: any[];
  14. regionPoints: any[];
  15. };
  16. export declare function circleContent(airspaceInfo: any, type?: number): any;
  17. export declare function lineContent(airspaceInfo: any, type?: number): any;
  18. export declare function polygonContent(airspaceInfo: any, type?: number): any;
  19. export { latLngDegreesToDecimal, latLngDecimalToDegrees };