@candlerip/shared3 0.0.49 → 0.0.50
Sign up to get free protection for your applications and to get access to all the features.
- package/package.json +1 -1
- package/src/type/array/index.d.ts +1 -0
- package/src/type/array/index.js +1 -0
- package/src/type/array/type-guards/index.d.ts +1 -0
- package/src/type/array/type-guards/index.js +1 -0
- package/src/type/array/type-guards/is-array/index.d.ts +1 -0
- package/src/type/array/type-guards/is-array/index.js +9 -0
- package/src/type/index.d.ts +3 -1
- package/src/type/index.js +3 -1
package/package.json
CHANGED
@@ -0,0 +1 @@
|
|
1
|
+
export * from './type-guards/index.js';
|
@@ -0,0 +1 @@
|
|
1
|
+
export * from './type-guards/index.js';
|
@@ -0,0 +1 @@
|
|
1
|
+
export * from './is-array/index.js';
|
@@ -0,0 +1 @@
|
|
1
|
+
export * from './is-array/index.js';
|
@@ -0,0 +1 @@
|
|
1
|
+
export declare const isArray: <T>(data?: unknown, typeGuard?: (data?: unknown) => data is T) => data is T[];
|
package/src/type/index.d.ts
CHANGED
package/src/type/index.js
CHANGED