UNPKG

708 BTypeScriptView Raw
1import { Scope } from './isolate';
2export declare function isClassOrId(str: string): boolean;
3export declare function isDocFrag(el: Element | DocumentFragment): el is DocumentFragment;
4export declare function checkValidContainer(container: Element | DocumentFragment | string): void;
5export declare function getValidNode(selectors: Element | DocumentFragment | string): Element | DocumentFragment | null;
6export declare function getSelectors(namespace: Array<Scope>): string;
7export declare function isEqualNamespace(a: Array<Scope> | undefined, b: Array<Scope> | undefined): boolean;
8export declare function makeInsert(map: Map<string, Map<Element, any>>): (type: string, elm: Element, value: any) => void;