forked from xmldom/xmldom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.d.ts
45 lines (36 loc) · 1.02 KB
/
index.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/// <reference lib="dom" />
declare module '@xmldom/xmldom' {
var DOMParser: DOMParserStatic
var XMLSerializer: XMLSerializerStatic
var DOMImplementation: DOMImplementationStatic
interface DOMImplementationStatic {
new (): DOMImplementation
}
interface DOMParserStatic {
new (): DOMParser
new (options: DOMParserOptions): DOMParser
}
interface XMLSerializerStatic {
new (): XMLSerializer
}
interface DOMParser {
parseFromString(source: string, mimeType?: string): Document | undefined
}
interface XMLSerializer {
serializeToString(node: Node): string
}
interface DOMParserOptions {
errorHandler?: ErrorHandlerFunction | ErrorHandlerObject
locator?: boolean
normalizeLineEndings?: (source: string) => string
xmlns?: Record<string, string | null | undefined>
}
interface ErrorHandlerFunction {
(level: 'warn' | 'error' | 'fatalError', msg: string): void
}
interface ErrorHandlerObject {
warning?: (msg: string) => void
error?: (msg: string) => void
fatalError?: (msg: string) => void
}
}