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

DOMMatrix.d.ts 223 B

1234567891011
  1. /**
  2. * DOM Matrix.
  3. *
  4. * TODO: Not fully implemented.
  5. *
  6. * @see https://developer.mozilla.org/en-US/docs/Web/API/DOMMatrix
  7. */
  8. export default class DOMMatrix {
  9. readonly is2D = false;
  10. readonly isIdentity = false;
  11. }