版博士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.

SVGAnimatedRect.d.ts 218 B

12345678910
  1. import SVGRect from './SVGRect';
  2. /**
  3. * Rect object.
  4. *
  5. * @see https://developer.mozilla.org/en-US/docs/Web/API/SVGAnimatedRect
  6. */
  7. export default class SVGAnimatedRect {
  8. baseVal: SVGRect;
  9. animVal: SVGRect;
  10. }