astro-ghostcms/.pnpm-store/v3/files/1d/63349d145bfad4c78c94d1777e6...

51 lines
1.3 KiB
Plaintext

// Generated by dts-bundle-generator v8.0.1
type Node = DocumentNode | ElementNode | TextNode | CommentNode | DoctypeNode;
type NodeType = typeof DOCUMENT_NODE | typeof ELEMENT_NODE | typeof TEXT_NODE | typeof COMMENT_NODE | typeof DOCTYPE_NODE;
interface Location {
start: number;
end: number;
}
interface BaseNode {
type: NodeType;
loc: [
Location,
Location
];
parent: Node;
[key: string]: any;
}
interface LiteralNode extends BaseNode {
value: string;
}
interface ParentNode extends BaseNode {
children: Node[];
}
interface DocumentNode extends Omit<ParentNode, "parent"> {
type: typeof DOCUMENT_NODE;
attributes: Record<string, string>;
parent: undefined;
}
interface ElementNode extends ParentNode {
type: typeof ELEMENT_NODE;
name: string;
attributes: Record<string, string>;
}
interface TextNode extends LiteralNode {
type: typeof TEXT_NODE;
}
interface CommentNode extends LiteralNode {
type: typeof COMMENT_NODE;
}
interface DoctypeNode extends LiteralNode {
type: typeof DOCTYPE_NODE;
}
declare const DOCUMENT_NODE = 0;
declare const ELEMENT_NODE = 1;
declare const TEXT_NODE = 2;
declare const COMMENT_NODE = 3;
declare const DOCTYPE_NODE = 4;
export default function swap(components?: Record<string, string | ((props: Record<string, any>, ...children: any[]) => any)>): (doc: Node) => Node;
export {};