mirror of
https://github.com/S2-/minifyfromhtml.git
synced 2025-08-04 12:40:05 +02:00
update packages to latest version
This commit is contained in:
92
node_modules/parse5/dist/cjs/tree-adapters/default.d.ts
generated
vendored
Normal file
92
node_modules/parse5/dist/cjs/tree-adapters/default.d.ts
generated
vendored
Normal file
@@ -0,0 +1,92 @@
|
||||
import { DOCUMENT_MODE, type NS } from '../common/html.js';
|
||||
import type { Attribute, Location, ElementLocation } from '../common/token.js';
|
||||
import type { TreeAdapter, TreeAdapterTypeMap } from './interface.js';
|
||||
export declare enum NodeType {
|
||||
Document = "#document",
|
||||
DocumentFragment = "#document-fragment",
|
||||
Comment = "#comment",
|
||||
Text = "#text",
|
||||
DocumentType = "#documentType"
|
||||
}
|
||||
export interface Document {
|
||||
/** The name of the node. */
|
||||
nodeName: NodeType.Document;
|
||||
/**
|
||||
* Document mode.
|
||||
*
|
||||
* @see {@link DOCUMENT_MODE} */
|
||||
mode: DOCUMENT_MODE;
|
||||
/** The node's children. */
|
||||
childNodes: ChildNode[];
|
||||
/** Comment source code location info. Available if location info is enabled. */
|
||||
sourceCodeLocation?: Location | null;
|
||||
}
|
||||
export interface DocumentFragment {
|
||||
/** The name of the node. */
|
||||
nodeName: NodeType.DocumentFragment;
|
||||
/** The node's children. */
|
||||
childNodes: ChildNode[];
|
||||
/** Comment source code location info. Available if location info is enabled. */
|
||||
sourceCodeLocation?: Location | null;
|
||||
}
|
||||
export interface Element {
|
||||
/** Element tag name. Same as {@link tagName}. */
|
||||
nodeName: string;
|
||||
/** Element tag name. Same as {@link nodeName}. */
|
||||
tagName: string;
|
||||
/** List of element attributes. */
|
||||
attrs: Attribute[];
|
||||
/** Element namespace. */
|
||||
namespaceURI: NS;
|
||||
/** Element source code location info, with attributes. Available if location info is enabled. */
|
||||
sourceCodeLocation?: ElementLocation | null;
|
||||
/** Parent node. */
|
||||
parentNode: ParentNode | null;
|
||||
/** The node's children. */
|
||||
childNodes: ChildNode[];
|
||||
}
|
||||
export interface CommentNode {
|
||||
/** The name of the node. */
|
||||
nodeName: NodeType.Comment;
|
||||
/** Parent node. */
|
||||
parentNode: ParentNode | null;
|
||||
/** Comment text. */
|
||||
data: string;
|
||||
/** Comment source code location info. Available if location info is enabled. */
|
||||
sourceCodeLocation?: Location | null;
|
||||
}
|
||||
export interface TextNode {
|
||||
nodeName: NodeType.Text;
|
||||
/** Parent node. */
|
||||
parentNode: ParentNode | null;
|
||||
/** Text content. */
|
||||
value: string;
|
||||
/** Comment source code location info. Available if location info is enabled. */
|
||||
sourceCodeLocation?: Location | null;
|
||||
}
|
||||
export interface Template extends Element {
|
||||
nodeName: 'template';
|
||||
tagName: 'template';
|
||||
/** The content of a `template` tag. */
|
||||
content: DocumentFragment;
|
||||
}
|
||||
export interface DocumentType {
|
||||
/** The name of the node. */
|
||||
nodeName: NodeType.DocumentType;
|
||||
/** Parent node. */
|
||||
parentNode: ParentNode | null;
|
||||
/** Document type name. */
|
||||
name: string;
|
||||
/** Document type public identifier. */
|
||||
publicId: string;
|
||||
/** Document type system identifier. */
|
||||
systemId: string;
|
||||
/** Comment source code location info. Available if location info is enabled. */
|
||||
sourceCodeLocation?: Location | null;
|
||||
}
|
||||
export declare type ParentNode = Document | DocumentFragment | Element | Template;
|
||||
export declare type ChildNode = Element | Template | CommentNode | TextNode | DocumentType;
|
||||
export declare type Node = ParentNode | ChildNode;
|
||||
export declare type DefaultTreeAdapterMap = TreeAdapterTypeMap<Node, ParentNode, ChildNode, Document, DocumentFragment, Element, CommentNode, TextNode, Template, DocumentType>;
|
||||
export declare const defaultTreeAdapter: TreeAdapter<DefaultTreeAdapterMap>;
|
||||
//# sourceMappingURL=default.d.ts.map
|
Reference in New Issue
Block a user