UNPKG

450 BTypeScriptView Raw
1export declare const getNode: (className: string) => HTMLElement;
2export declare const stringToNode: (html: string) => HTMLElement;
3export declare const insertAfter: (newNode: Node, referenceNode: Node) => void;
4export declare const removeNode: (node: Node) => void;
5export declare const throwErr: (message: string) => never;
6export declare const isPlainObject: (value: any) => boolean;
7export declare const ordinalSuffixOf: (num: number) => string;