Common.d.ts 435 B

1234567891011121314151617
  1. export default class Global {
  2. static airspaceType: {
  3. circle: number;
  4. line: number;
  5. polygon: number;
  6. };
  7. static pointTypes: {
  8. nav: number;
  9. line: number;
  10. point: number;
  11. };
  12. static amapLineWidth: number;
  13. static amapStrokeColor: string;
  14. static amapFillColor: string;
  15. static heightStandards: Map<string, number>;
  16. static heightStandardsById: Map<any, any>;
  17. }