linkedom
Version:
A triple-linked lists based DOM implementation
16 lines (15 loc) • 648 B
TypeScript
export { $String as String };
export function getEnd(node: any): any;
export function ignoreCase({ ownerDocument }: {
ownerDocument: any;
}): any;
export function knownAdjacent(prev: any, next: any): void;
export function knownBoundaries(prev: any, current: any, next: any): void;
export function knownSegment(prev: any, start: any, end: any, next: any): void;
export function knownSiblings(prev: any, current: any, next: any): void;
export function localCase({ localName, ownerDocument }: {
localName: any;
ownerDocument: any;
}): any;
export function setAdjacent(prev: any, next: any): void;
declare const $String: StringConstructor;