'f'
mh-two-thousand-and-two
2024-04-12 26f2711ef9461961fb953e2b497bd314ef95e345
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
declare namespace saxes {
  export const EVENTS: ReadonlyArray<string>;
 
  export interface SaxesOptions {
    xmlns?: boolean;
    position?: boolean;
    fragment?: boolean;
    fileName?: string;
    additionalNamespaces?: Record<string, string>;
  }
 
  export interface XMLDecl {
    version?: string;
    encoding?: string;
    standalone?: string;
  }
 
  export interface SaxesAttribute {
    name: string;
    prefix: string;
    local: string;
    uri: string;
    value: string;
  }
 
  export interface SaxesTag {
    name: string;
    prefix: string;
    local: string;
    uri: string;
    attributes: Record<string, SaxesAttribute> | Record<string, string>;
    ns: Record<string, string>;
    isSelfClosing: boolean;
  }
 
  export class SaxesParser {
    constructor(opt: SaxesOptions);
 
    readonly opt: SaxesOptions;
    readonly closed: boolean;
    readonly xmlDecl: XMLDecl;
    readonly line: number;
    readonly column: number;
    readonly position: number;
    readonly ENTITIES: Record<string, string>;
 
    ontext(text: string): void;
    onprocessinginstruction(pi: { target: string, body: string }): void;
    ondoctype(doctype: string): void;
    oncomment(comment: string): void;
    onopentagstart(tag: SaxesTag): void;
    onopentag(tag: SaxesTag): void;
    onclosetag(tag: SaxesTag): void;
    oncdata(cdata: string): void;
    onend(): void;
    onready(): void;
    onerror(err: Error): void;
 
    fail(er: Error): this;
    write(chunk: string | null): this;
    close(): this;
 
    resolve(prefix: string): string | undefined;
  }
}
 
export = saxes;