reykit 1.0.59 → 1.0.60

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/data.d.ts ADDED
@@ -0,0 +1,8 @@
1
+ /**
2
+ * @Time : 2026-03-17
3
+ * @Author : Rey
4
+ * @Contact : reyxbo@163.com
5
+ * @Explain : Data methods.
6
+ */
7
+ export declare function range(stop: number): Generator<number>;
8
+ export declare function range(start: number, stop: number, step?: number): Generator<number>;
package/dist/index.d.ts CHANGED
@@ -1,5 +1,6 @@
1
1
  import * as component from './components';
2
2
  import * as base from './base';
3
+ import * as data from './data';
3
4
  import * as net from './net';
4
5
  import * as re from './re';
5
6
  import * as react from './react';
@@ -8,6 +9,7 @@ import * as window from './window';
8
9
  declare const _default: {
9
10
  component: typeof component;
10
11
  base: typeof base;
12
+ data: typeof data;
11
13
  net: typeof net;
12
14
  re: typeof re;
13
15
  react: typeof react;