版博士V2.0程序
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

SVGAngle.d.ts 603 B

123456789101112131415161718192021222324
  1. /**
  2. * SVG angle.
  3. *
  4. * @see https://developer.mozilla.org/en-US/docs/Web/API/SVGAngle
  5. */
  6. export default class SVGAngle {
  7. static SVG_ANGLETYPE_UNKNOWN: string;
  8. static SVG_ANGLETYPE_UNSPECIFIED: string;
  9. static SVG_ANGLETYPE_DEG: string;
  10. static SVG_ANGLETYPE_RAD: string;
  11. static SVG_ANGLETYPE_GRAD: string;
  12. unitType: string;
  13. value: number;
  14. valueInSpecifiedUnits: number;
  15. valueAsString: string;
  16. /**
  17. * New value specific units.
  18. */
  19. newValueSpecifiedUnits(): void;
  20. /**
  21. * Convert to specific units.
  22. */
  23. convertToSpecifiedUnits(): void;
  24. }