UNPKG

4.07 kBTypeScriptView Raw
1import activeElement from './activeElement';
2import addClass from './addClass';
3import addEventListener from './addEventListener';
4import animate from './animate';
5import { cancel as cancelAnimationFrame, request as requestAnimationFrame } from './animationFrame';
6import attribute from './attribute';
7import childElements from './childElements';
8import clear from './clear';
9import closest from './closest';
10import contains from './contains';
11import childNodes from './childNodes';
12import style from './css';
13import filter from './filterEventHandler';
14import getComputedStyle from './getComputedStyle';
15import hasClass from './hasClass';
16import height from './height';
17import insertAfter from './insertAfter';
18import isInput from './isInput';
19import isVisible from './isVisible';
20import listen from './listen';
21import matches from './matches';
22import nextUntil from './nextUntil';
23import offset from './offset';
24import offsetParent from './offsetParent';
25import ownerDocument from './ownerDocument';
26import ownerWindow from './ownerWindow';
27import parents from './parents';
28import position from './position';
29import prepend from './prepend';
30import querySelectorAll from './querySelectorAll';
31import remove from './remove';
32import removeClass from './removeClass';
33import removeEventListener from './removeEventListener';
34import scrollbarSize from './scrollbarSize';
35import scrollLeft from './scrollLeft';
36import scrollParent from './scrollParent';
37import scrollTo from './scrollTo';
38import scrollTop from './scrollTop';
39import siblings from './siblings';
40import text from './text';
41import toggleClass from './toggleClass';
42import transitionEnd from './transitionEnd';
43import triggerEvent from './triggerEvent';
44import width from './width';
45export { addEventListener, removeEventListener, triggerEvent, animate, filter, listen, style, getComputedStyle, attribute, activeElement, ownerDocument, ownerWindow, requestAnimationFrame, cancelAnimationFrame, matches, height, width, offset, offsetParent, position, contains, scrollbarSize, scrollLeft, scrollParent, scrollTo, scrollTop, querySelectorAll, closest, addClass, removeClass, hasClass, toggleClass, transitionEnd, childNodes, childElements, nextUntil, parents, siblings, clear, insertAfter, isInput, isVisible, prepend, remove, text, };
46declare const _default: {
47 addEventListener: typeof addEventListener;
48 removeEventListener: typeof removeEventListener;
49 triggerEvent: typeof triggerEvent;
50 animate: typeof animate;
51 filter: typeof filter;
52 listen: typeof listen;
53 style: typeof style;
54 getComputedStyle: typeof getComputedStyle;
55 attribute: typeof attribute;
56 activeElement: typeof activeElement;
57 ownerDocument: typeof ownerDocument;
58 ownerWindow: typeof ownerWindow;
59 requestAnimationFrame: typeof globalThis.requestAnimationFrame;
60 cancelAnimationFrame: (id: number) => void;
61 matches: typeof matches;
62 height: typeof height;
63 width: typeof width;
64 offset: typeof offset;
65 offsetParent: typeof offsetParent;
66 position: typeof position;
67 contains: typeof contains;
68 scrollbarSize: typeof scrollbarSize;
69 scrollLeft: {
70 (node: Element): number;
71 (node: Element, val: number): undefined;
72 };
73 scrollParent: typeof scrollParent;
74 scrollTo: typeof scrollTo;
75 scrollTop: {
76 (node: Element): number;
77 (node: Element, val: number): undefined;
78 };
79 querySelectorAll: typeof querySelectorAll;
80 closest: typeof closest;
81 addClass: typeof addClass;
82 removeClass: typeof removeClass;
83 hasClass: typeof hasClass;
84 toggleClass: typeof toggleClass;
85 transitionEnd: typeof transitionEnd;
86 childNodes: typeof childNodes;
87 childElements: typeof childElements;
88 nextUntil: typeof nextUntil;
89 parents: typeof parents;
90 siblings: typeof siblings;
91 clear: typeof clear;
92 insertAfter: typeof insertAfter;
93 isInput: typeof isInput;
94 isVisible: typeof isVisible;
95 prepend: typeof prepend;
96 remove: typeof remove;
97 text: typeof text;
98};
99export default _default;