forked from olcxjas-softworks/LarpixClient
Add capacitorjs runtime
This commit is contained in:
parent
d0ece489ee
commit
f90c0e6c40
8362 changed files with 1502407 additions and 1 deletions
23
node_modules/node-html-parser/dist/nodes/node.d.ts
generated
vendored
Normal file
23
node_modules/node-html-parser/dist/nodes/node.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
import NodeType from './type';
|
||||
import HTMLElement from './html';
|
||||
/**
|
||||
* Node Class as base class for TextNode and HTMLElement.
|
||||
*/
|
||||
export default abstract class Node {
|
||||
parentNode: HTMLElement;
|
||||
abstract nodeType: NodeType;
|
||||
childNodes: Node[];
|
||||
range: readonly [number, number];
|
||||
abstract text: string;
|
||||
abstract rawText: string;
|
||||
abstract toString(): string;
|
||||
abstract clone(): Node;
|
||||
constructor(parentNode?: HTMLElement, range?: [number, number]);
|
||||
/**
|
||||
* Remove current node
|
||||
*/
|
||||
remove(): this;
|
||||
get innerText(): string;
|
||||
get textContent(): string;
|
||||
set textContent(val: string);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue