Skip to content
This repository was archived by the owner on Sep 5, 2022. It is now read-only.

Commit 76e2c2f

Browse files
committed
fix: add all utils to exports
1 parent 4aafc14 commit 76e2c2f

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

index.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1+
import * as components from "./components";
2+
import * as utils from "./utils";
3+
14
export * from "./core/component";
25
export * from "./core/mutate";
36
export * from "./core/ticker";
47
export * from "./core/watcher";
58

6-
import * as components from "./components";
7-
import * as utils from "./utils";
8-
99
export { components, utils };

utils/index.ts

+6
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
11
export * from "./animation";
22
export * from "./browser";
33
export * from "./dom";
4+
export * from "./easings";
5+
export * from "./emitter";
6+
export * from "./functions";
47
export * from "./gesture";
8+
export * from "./math";
9+
export * from "./scroll";
10+
export * from "./tween";

0 commit comments

Comments
 (0)