版博士V2.0程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

25 line
603 B

  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. }