first commit

This commit is contained in:
s.golasch
2023-08-01 13:49:46 +02:00
commit 1fc239fd54
20238 changed files with 3112246 additions and 0 deletions

1
build/node_modules/dom5/custom_typings/main.d.ts generated vendored Normal file
View File

@@ -0,0 +1 @@
/// <reference path="parse5.d.ts" />

19
build/node_modules/dom5/custom_typings/parse5.d.ts generated vendored Normal file
View File

@@ -0,0 +1,19 @@
import * as parse5 from 'parse5';
declare module 'parse5' {
interface TreeAdapter {}
export class Parser {
constructor(treeAdapter?: TreeAdapter, options?: ParserOptions);
parse(html: string): ASTNode;
parseFragment(html: string): ASTNode;
}
export class Serializer {
constructor();
serialize(node: ASTNode): string;
}
export const TreeAdapters: {
default: TreeAdapter; //
};
export interface ASTNode { tagName?: string; }
export interface CommentNode extends ASTNode { data: string; }
}