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

DOMImplementation.d.ts 995 B

1234567891011121314151617181920212223242526272829303132
  1. import DocumentType from '../nodes/document-type/DocumentType';
  2. import IDocument from '../nodes/document/IDocument';
  3. /**
  4. * The DOMImplementation interface represents an object providing methods which are not dependent on any particular document. Such an object is returned by the.
  5. */
  6. export default class DOMImplementation {
  7. protected _ownerDocument: IDocument;
  8. /**
  9. * Constructor.
  10. *
  11. * @param ownerDocument
  12. */
  13. constructor(ownerDocument: IDocument);
  14. /**
  15. * Creates and returns an XML Document.
  16. *
  17. * TODO: Not fully implemented.
  18. */
  19. createDocument(): IDocument;
  20. /**
  21. * Creates and returns an HTML Document.
  22. */
  23. createHTMLDocument(): IDocument;
  24. /**
  25. * Creates and returns an HTML Document.
  26. *
  27. * @param qualifiedName Qualified name.
  28. * @param publicId Public ID.
  29. * @param systemId System ID.
  30. */
  31. createDocumentType(qualifiedName: string, publicId: string, systemId: string): DocumentType;
  32. }