You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
2.1 KiB
46 lines
2.1 KiB
import { Parser, ParserOptions } from "./Parser.js"; |
|
export { Parser, type ParserOptions }; |
|
import { DomHandler, DomHandlerOptions, ChildNode, Element, Document } from "domhandler"; |
|
export { DomHandler, type DomHandlerOptions }; |
|
declare type Options = ParserOptions & DomHandlerOptions; |
|
/** |
|
* Parses the data, returns the resulting document. |
|
* |
|
* @param data The data that should be parsed. |
|
* @param options Optional options for the parser and DOM builder. |
|
*/ |
|
export declare function parseDocument(data: string, options?: Options): Document; |
|
/** |
|
* Parses data, returns an array of the root nodes. |
|
* |
|
* Note that the root nodes still have a `Document` node as their parent. |
|
* Use `parseDocument` to get the `Document` node instead. |
|
* |
|
* @param data The data that should be parsed. |
|
* @param options Optional options for the parser and DOM builder. |
|
* @deprecated Use `parseDocument` instead. |
|
*/ |
|
export declare function parseDOM(data: string, options?: Options): ChildNode[]; |
|
/** |
|
* Creates a parser instance, with an attached DOM handler. |
|
* |
|
* @param cb A callback that will be called once parsing has been completed. |
|
* @param options Optional options for the parser and DOM builder. |
|
* @param elementCb An optional callback that will be called every time a tag has been completed inside of the DOM. |
|
*/ |
|
export declare function createDomStream(cb: (error: Error | null, dom: ChildNode[]) => void, options?: Options, elementCb?: (element: Element) => void): Parser; |
|
export { default as Tokenizer, type Callbacks as TokenizerCallbacks, } from "./Tokenizer.js"; |
|
import * as ElementType from "domelementtype"; |
|
export { ElementType }; |
|
import { getFeed, Feed } from "domutils"; |
|
export { getFeed }; |
|
/** |
|
* Parse a feed. |
|
* |
|
* @param feed The feed that should be parsed, as a string. |
|
* @param options Optionally, options for parsing. When using this, you should set `xmlMode` to `true`. |
|
*/ |
|
export declare function parseFeed(feed: string, options?: ParserOptions & DomHandlerOptions): Feed | null; |
|
export * as DomUtils from "domutils"; |
|
export { DomHandler as DefaultHandler }; |
|
//# sourceMappingURL=index.d.ts.map
|