版博士V2.0程序
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

DOMException.d.ts 322 B

123456789101112131415
  1. /**
  2. * DOM Exception.
  3. *
  4. * Reference:
  5. * https://developer.mozilla.org/en-US/docs/Web/API/DOMException/DOMException.
  6. */
  7. export default class DOMException extends Error {
  8. /**
  9. * Constructor.
  10. *
  11. * @param message Message.
  12. * @param name Name.
  13. */
  14. constructor(message: string, name?: string);
  15. }