-
Notifications
You must be signed in to change notification settings - Fork 100
Expand file tree
/
Copy pathrange.d.ts
More file actions
23 lines (23 loc) · 745 Bytes
/
range.d.ts
File metadata and controls
23 lines (23 loc) · 745 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/**
* @implements globalThis.Range
*/
export class Range implements globalThis.Range {
commonAncestorContainer: any;
insertNode(newNode: any): void;
selectNode(node: any): void;
selectNodeContents(node: any): void;
surroundContents(parentNode: any): void;
setStartBefore(node: any): void;
setStartAfter(node: any): void;
setEndBefore(node: any): void;
setEndAfter(node: any): void;
cloneContents(): any;
deleteContents(): void;
extractContents(): any;
createContextualFragment(html: any): import("./document-fragment.js").DocumentFragment;
cloneRange(): Range;
[START]: any;
[END]: any;
}
import { START } from '../shared/symbols.js';
import { END } from '../shared/symbols.js';