osmdColor.d.ts 526 B

12345678910111213141516171819
  1. export declare class OSMDColor {
  2. alpha: number;
  3. red: number;
  4. green: number;
  5. blue: number;
  6. constructor(red: number, green: number, blue: number);
  7. static Black: OSMDColor;
  8. static DeepSkyBlue: OSMDColor;
  9. static Green: OSMDColor;
  10. static Magenta: OSMDColor;
  11. static Orange: OSMDColor;
  12. static Red: OSMDColor;
  13. static Disabled: OSMDColor;
  14. static DarkBlue: OSMDColor;
  15. static Debug1: OSMDColor;
  16. static Debug2: OSMDColor;
  17. static Debug3: OSMDColor;
  18. toString(): string;
  19. }