reykit 1.0.165 → 1.0.167
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/src/lib/index.d.ts +2 -1
- package/dist/src/lib/time.d.ts +12 -0
- package/package.json +1 -1
package/dist/src/lib/index.d.ts
CHANGED
|
@@ -4,6 +4,7 @@ import * as image from '../lib/image';
|
|
|
4
4
|
import * as net from '../lib/net';
|
|
5
5
|
import * as re from '../lib/re';
|
|
6
6
|
import * as react from '../lib/react';
|
|
7
|
+
import * as time from '../lib/time';
|
|
7
8
|
import * as twc from '../lib/twc';
|
|
8
9
|
import * as window from '../lib/window';
|
|
9
|
-
export { base, data, image, net, re, react, twc, window };
|
|
10
|
+
export { base, data, image, net, re, react, time, twc, window };
|