diff options
author | RaindropsSys <raindrops@equestria.dev> | 2023-11-17 23:25:29 +0100 |
---|---|---|
committer | RaindropsSys <raindrops@equestria.dev> | 2023-11-17 23:25:29 +0100 |
commit | 953ddd82e48dd206cef5ac94456549aed13b3ad5 (patch) | |
tree | 8f003106ee2e7f422e5a22d2ee04d0db302e66c0 /includes/external/addressbook/node_modules/domhandler/lib/esm/index.d.ts | |
parent | 62a9199846b0c07c03218703b33e8385764f42d9 (diff) | |
download | pluralconnect-953ddd82e48dd206cef5ac94456549aed13b3ad5.tar.gz pluralconnect-953ddd82e48dd206cef5ac94456549aed13b3ad5.tar.bz2 pluralconnect-953ddd82e48dd206cef5ac94456549aed13b3ad5.zip |
Updated 30 files and deleted 2976 files (automated)
Diffstat (limited to 'includes/external/addressbook/node_modules/domhandler/lib/esm/index.d.ts')
-rw-r--r-- | includes/external/addressbook/node_modules/domhandler/lib/esm/index.d.ts | 76 |
1 files changed, 0 insertions, 76 deletions
diff --git a/includes/external/addressbook/node_modules/domhandler/lib/esm/index.d.ts b/includes/external/addressbook/node_modules/domhandler/lib/esm/index.d.ts deleted file mode 100644 index 5d322c1..0000000 --- a/includes/external/addressbook/node_modules/domhandler/lib/esm/index.d.ts +++ /dev/null @@ -1,76 +0,0 @@ -import { ChildNode, Element, DataNode, Document, ParentNode } from "./node.js"; -export * from "./node.js"; -export interface DomHandlerOptions { - /** - * Add a `startIndex` property to nodes. - * When the parser is used in a non-streaming fashion, `startIndex` is an integer - * indicating the position of the start of the node in the document. - * - * @default false - */ - withStartIndices?: boolean; - /** - * Add an `endIndex` property to nodes. - * When the parser is used in a non-streaming fashion, `endIndex` is an integer - * indicating the position of the end of the node in the document. - * - * @default false - */ - withEndIndices?: boolean; - /** - * Treat the markup as XML. - * - * @default false - */ - xmlMode?: boolean; -} -interface ParserInterface { - startIndex: number | null; - endIndex: number | null; -} -declare type Callback = (error: Error | null, dom: ChildNode[]) => void; -declare type ElementCallback = (element: Element) => void; -export declare class DomHandler { - /** The elements of the DOM */ - dom: ChildNode[]; - /** The root element for the DOM */ - root: Document; - /** Called once parsing has completed. */ - private readonly callback; - /** Settings for the handler. */ - private readonly options; - /** Callback whenever a tag is closed. */ - private readonly elementCB; - /** Indicated whether parsing has been completed. */ - private done; - /** Stack of open tags. */ - protected tagStack: ParentNode[]; - /** A data node that is still being written to. */ - protected lastNode: DataNode | null; - /** Reference to the parser instance. Used for location information. */ - private parser; - /** - * @param callback Called once parsing has completed. - * @param options Settings for the handler. - * @param elementCB Callback whenever a tag is closed. - */ - constructor(callback?: Callback | null, options?: DomHandlerOptions | null, elementCB?: ElementCallback); - onparserinit(parser: ParserInterface): void; - onreset(): void; - onend(): void; - onerror(error: Error): void; - onclosetag(): void; - onopentag(name: string, attribs: { - [key: string]: string; - }): void; - ontext(data: string): void; - oncomment(data: string): void; - oncommentend(): void; - oncdatastart(): void; - oncdataend(): void; - onprocessinginstruction(name: string, data: string): void; - protected handleCallback(error: Error | null): void; - protected addNode(node: ChildNode): void; -} -export default DomHandler; -//# sourceMappingURL=index.d.ts.map
\ No newline at end of file |