@rnw-community/shared 1.9.0 → 1.10.1

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.
Files changed (46) hide show
  1. package/dist/cjs/index.d.ts +7 -0
  2. package/dist/cjs/index.d.ts.map +1 -1
  3. package/dist/cjs/index.js +3 -1
  4. package/dist/cjs/index.js.map +1 -1
  5. package/dist/cjs/type/abstract-constructor-type/abstract-constructor.type.d.ts +2 -0
  6. package/dist/cjs/type/abstract-constructor-type/abstract-constructor.type.d.ts.map +1 -0
  7. package/dist/cjs/type/abstract-constructor-type/abstract-constructor.type.js +3 -0
  8. package/dist/cjs/type/abstract-constructor-type/abstract-constructor.type.js.map +1 -0
  9. package/dist/cjs/type/any-fn-type/any-fn.type.d.ts +2 -0
  10. package/dist/cjs/type/any-fn-type/any-fn.type.d.ts.map +1 -0
  11. package/dist/cjs/type/any-fn-type/any-fn.type.js +3 -0
  12. package/dist/cjs/type/any-fn-type/any-fn.type.js.map +1 -0
  13. package/dist/cjs/type/method-decorator-type/method-decorator.type.d.ts +3 -0
  14. package/dist/cjs/type/method-decorator-type/method-decorator.type.d.ts.map +1 -0
  15. package/dist/cjs/type/method-decorator-type/method-decorator.type.js +3 -0
  16. package/dist/cjs/type/method-decorator-type/method-decorator.type.js.map +1 -0
  17. package/dist/cjs/type-guard/array/is-array/is-array.d.ts +1 -2
  18. package/dist/cjs/type-guard/array/is-array/is-array.d.ts.map +1 -1
  19. package/dist/cjs/type-guard/array/is-empty-array/is-empty-array.d.ts +1 -2
  20. package/dist/cjs/type-guard/array/is-empty-array/is-empty-array.d.ts.map +1 -1
  21. package/dist/cjs/type-guard/array/is-not-empty-array/is-not-empty-array.d.ts +1 -2
  22. package/dist/cjs/type-guard/array/is-not-empty-array/is-not-empty-array.d.ts.map +1 -1
  23. package/dist/esm/index.d.ts +7 -0
  24. package/dist/esm/index.d.ts.map +1 -1
  25. package/dist/esm/index.js +1 -0
  26. package/dist/esm/index.js.map +1 -1
  27. package/dist/esm/type/abstract-constructor-type/abstract-constructor.type.d.ts +2 -0
  28. package/dist/esm/type/abstract-constructor-type/abstract-constructor.type.d.ts.map +1 -0
  29. package/dist/esm/type/abstract-constructor-type/abstract-constructor.type.js +2 -0
  30. package/dist/esm/type/abstract-constructor-type/abstract-constructor.type.js.map +1 -0
  31. package/dist/esm/type/any-fn-type/any-fn.type.d.ts +2 -0
  32. package/dist/esm/type/any-fn-type/any-fn.type.d.ts.map +1 -0
  33. package/dist/esm/type/any-fn-type/any-fn.type.js +2 -0
  34. package/dist/esm/type/any-fn-type/any-fn.type.js.map +1 -0
  35. package/dist/esm/type/method-decorator-type/method-decorator.type.d.ts +3 -0
  36. package/dist/esm/type/method-decorator-type/method-decorator.type.d.ts.map +1 -0
  37. package/dist/esm/type/method-decorator-type/method-decorator.type.js +2 -0
  38. package/dist/esm/type/method-decorator-type/method-decorator.type.js.map +1 -0
  39. package/dist/esm/type-guard/array/is-array/is-array.d.ts +1 -2
  40. package/dist/esm/type-guard/array/is-array/is-array.d.ts.map +1 -1
  41. package/dist/esm/type-guard/array/is-empty-array/is-empty-array.d.ts +1 -2
  42. package/dist/esm/type-guard/array/is-empty-array/is-empty-array.d.ts.map +1 -1
  43. package/dist/esm/type-guard/array/is-not-empty-array/is-not-empty-array.d.ts +1 -2
  44. package/dist/esm/type-guard/array/is-not-empty-array/is-not-empty-array.d.ts.map +1 -1
  45. package/package.json +2 -2
  46. package/readme.md +3 -0
@@ -1,4 +1,7 @@
1
+ export type { AbstractConstructor } from './type/abstract-constructor-type/abstract-constructor.type';
2
+ export type { AnyFn } from './type/any-fn-type/any-fn.type';
1
3
  export type { ClassType } from './type/class-type/class.type';
4
+ export type { MethodDecoratorType } from './type/method-decorator-type/method-decorator.type';
2
5
  export type { OnEventFn } from './type/on-event-fn-type/on-event-fn.type';
3
6
  export type { Maybe } from './type/maybe-type/maybe.type';
4
7
  export type { EmptyFn } from './type/empty-fn-type/empty-fn.type';
@@ -11,8 +14,12 @@ export { isPromise } from './type-guard/generic/is-promise/is-promise';
11
14
  export { isString } from './type-guard/string/is-string/is-string';
12
15
  export { isEmptyString } from './type-guard/string/is-empty-string/is-empty-string';
13
16
  export { isNotEmptyString } from './type-guard/string/is-not-empty-string/is-not-empty-string';
17
+ export { isArray } from './type-guard/array/is-array/is-array';
18
+ export type { IsArrayFn } from './type-guard/array/is-array/is-array';
14
19
  export { isEmptyArray } from './type-guard/array/is-empty-array/is-empty-array';
20
+ export type { IsEmptyArrayFn } from './type-guard/array/is-empty-array/is-empty-array';
15
21
  export { isNotEmptyArray } from './type-guard/array/is-not-empty-array/is-not-empty-array';
22
+ export type { IsNotEmptyArrayFn } from './type-guard/array/is-not-empty-array/is-not-empty-array';
16
23
  export { isNumber } from './type-guard/number/is-number/is-number';
17
24
  export { isPositiveNumber } from './type-guard/number/is-positive-number/is-positive-number';
18
25
  export { cs } from './util/cs/cs';
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AACA,YAAY,EAAE,SAAS,EAAE,MAAM,8BAA8B,CAAC;AAC9D,YAAY,EAAE,SAAS,EAAE,MAAM,0CAA0C,CAAC;AAC1E,YAAY,EAAE,KAAK,EAAE,MAAM,8BAA8B,CAAC;AAC1D,YAAY,EAAE,OAAO,EAAE,MAAM,oCAAoC,CAAC;AAClE,YAAY,EAAE,IAAI,EAAE,MAAM,4BAA4B,CAAC;AACvD,YAAY,EAAE,eAAe,EAAE,MAAM,wDAAwD,CAAC;AAC9F,YAAY,EAAE,uBAAuB,EAAE,MAAM,0EAA0E,CAAC;AAGxH,OAAO,EAAE,SAAS,EAAE,MAAM,4CAA4C,CAAC;AACvE,OAAO,EAAE,OAAO,EAAE,MAAM,wCAAwC,CAAC;AACjE,OAAO,EAAE,SAAS,EAAE,MAAM,4CAA4C,CAAC;AAEvE,OAAO,EAAE,QAAQ,EAAE,MAAM,yCAAyC,CAAC;AACnE,OAAO,EAAE,aAAa,EAAE,MAAM,qDAAqD,CAAC;AACpF,OAAO,EAAE,gBAAgB,EAAE,MAAM,6DAA6D,CAAC;AAE/F,OAAO,EAAE,YAAY,EAAE,MAAM,kDAAkD,CAAC;AAChF,OAAO,EAAE,eAAe,EAAE,MAAM,0DAA0D,CAAC;AAE3F,OAAO,EAAE,QAAQ,EAAE,MAAM,yCAAyC,CAAC;AACnE,OAAO,EAAE,gBAAgB,EAAE,MAAM,2DAA2D,CAAC;AAG7F,OAAO,EAAE,EAAE,EAAE,MAAM,cAAc,CAAC;AAClC,OAAO,EAAE,OAAO,EAAE,MAAM,0BAA0B,CAAC;AACnD,OAAO,EAAE,eAAe,EAAE,MAAM,4CAA4C,CAAC;AAC7E,OAAO,EAAE,UAAU,EAAE,MAAM,gCAAgC,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AACA,YAAY,EAAE,mBAAmB,EAAE,MAAM,4DAA4D,CAAC;AACtG,YAAY,EAAE,KAAK,EAAE,MAAM,gCAAgC,CAAC;AAC5D,YAAY,EAAE,SAAS,EAAE,MAAM,8BAA8B,CAAC;AAC9D,YAAY,EAAE,mBAAmB,EAAE,MAAM,oDAAoD,CAAC;AAC9F,YAAY,EAAE,SAAS,EAAE,MAAM,0CAA0C,CAAC;AAC1E,YAAY,EAAE,KAAK,EAAE,MAAM,8BAA8B,CAAC;AAC1D,YAAY,EAAE,OAAO,EAAE,MAAM,oCAAoC,CAAC;AAClE,YAAY,EAAE,IAAI,EAAE,MAAM,4BAA4B,CAAC;AACvD,YAAY,EAAE,eAAe,EAAE,MAAM,wDAAwD,CAAC;AAC9F,YAAY,EAAE,uBAAuB,EAAE,MAAM,0EAA0E,CAAC;AAGxH,OAAO,EAAE,SAAS,EAAE,MAAM,4CAA4C,CAAC;AACvE,OAAO,EAAE,OAAO,EAAE,MAAM,wCAAwC,CAAC;AACjE,OAAO,EAAE,SAAS,EAAE,MAAM,4CAA4C,CAAC;AAEvE,OAAO,EAAE,QAAQ,EAAE,MAAM,yCAAyC,CAAC;AACnE,OAAO,EAAE,aAAa,EAAE,MAAM,qDAAqD,CAAC;AACpF,OAAO,EAAE,gBAAgB,EAAE,MAAM,6DAA6D,CAAC;AAE/F,OAAO,EAAE,OAAO,EAAE,MAAM,sCAAsC,CAAC;AAC/D,YAAY,EAAE,SAAS,EAAE,MAAM,sCAAsC,CAAC;AACtE,OAAO,EAAE,YAAY,EAAE,MAAM,kDAAkD,CAAC;AAChF,YAAY,EAAE,cAAc,EAAE,MAAM,kDAAkD,CAAC;AACvF,OAAO,EAAE,eAAe,EAAE,MAAM,0DAA0D,CAAC;AAC3F,YAAY,EAAE,iBAAiB,EAAE,MAAM,0DAA0D,CAAC;AAElG,OAAO,EAAE,QAAQ,EAAE,MAAM,yCAAyC,CAAC;AACnE,OAAO,EAAE,gBAAgB,EAAE,MAAM,2DAA2D,CAAC;AAG7F,OAAO,EAAE,EAAE,EAAE,MAAM,cAAc,CAAC;AAClC,OAAO,EAAE,OAAO,EAAE,MAAM,0BAA0B,CAAC;AACnD,OAAO,EAAE,eAAe,EAAE,MAAM,4CAA4C,CAAC;AAC7E,OAAO,EAAE,UAAU,EAAE,MAAM,gCAAgC,CAAC"}
package/dist/cjs/index.js CHANGED
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.getDefined = exports.getErrorMessage = exports.emptyFn = exports.cs = exports.isPositiveNumber = exports.isNumber = exports.isNotEmptyArray = exports.isEmptyArray = exports.isNotEmptyString = exports.isEmptyString = exports.isString = exports.isPromise = exports.isError = exports.isDefined = void 0;
3
+ exports.getDefined = exports.getErrorMessage = exports.emptyFn = exports.cs = exports.isPositiveNumber = exports.isNumber = exports.isNotEmptyArray = exports.isEmptyArray = exports.isArray = exports.isNotEmptyString = exports.isEmptyString = exports.isString = exports.isPromise = exports.isError = exports.isDefined = void 0;
4
4
  // Type guards
5
5
  var is_defined_1 = require("./type-guard/generic/is-defined/is-defined");
6
6
  Object.defineProperty(exports, "isDefined", { enumerable: true, get: function () { return is_defined_1.isDefined; } });
@@ -14,6 +14,8 @@ var is_empty_string_1 = require("./type-guard/string/is-empty-string/is-empty-st
14
14
  Object.defineProperty(exports, "isEmptyString", { enumerable: true, get: function () { return is_empty_string_1.isEmptyString; } });
15
15
  var is_not_empty_string_1 = require("./type-guard/string/is-not-empty-string/is-not-empty-string");
16
16
  Object.defineProperty(exports, "isNotEmptyString", { enumerable: true, get: function () { return is_not_empty_string_1.isNotEmptyString; } });
17
+ var is_array_1 = require("./type-guard/array/is-array/is-array");
18
+ Object.defineProperty(exports, "isArray", { enumerable: true, get: function () { return is_array_1.isArray; } });
17
19
  var is_empty_array_1 = require("./type-guard/array/is-empty-array/is-empty-array");
18
20
  Object.defineProperty(exports, "isEmptyArray", { enumerable: true, get: function () { return is_empty_array_1.isEmptyArray; } });
19
21
  var is_not_empty_array_1 = require("./type-guard/array/is-not-empty-array/is-not-empty-array");
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":";;;AASA,cAAc;AACd,yEAAuE;AAA9D,uGAAA,SAAS,OAAA;AAClB,mEAAiE;AAAxD,mGAAA,OAAO,OAAA;AAChB,yEAAuE;AAA9D,uGAAA,SAAS,OAAA;AAElB,qEAAmE;AAA1D,qGAAA,QAAQ,OAAA;AACjB,uFAAoF;AAA3E,gHAAA,aAAa,OAAA;AACtB,mGAA+F;AAAtF,uHAAA,gBAAgB,OAAA;AAEzB,mFAAgF;AAAvE,8GAAA,YAAY,OAAA;AACrB,+FAA2F;AAAlF,qHAAA,eAAe,OAAA;AAExB,qEAAmE;AAA1D,qGAAA,QAAQ,OAAA;AACjB,gGAA6F;AAApF,sHAAA,gBAAgB,OAAA;AAEzB,QAAQ;AACR,mCAAkC;AAAzB,wFAAA,EAAE,OAAA;AACX,qDAAmD;AAA1C,mGAAA,OAAO,OAAA;AAChB,gFAA6E;AAApE,oHAAA,eAAe,OAAA;AACxB,8DAA4D;AAAnD,yGAAA,UAAU,OAAA"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":";;;AAYA,cAAc;AACd,yEAAuE;AAA9D,uGAAA,SAAS,OAAA;AAClB,mEAAiE;AAAxD,mGAAA,OAAO,OAAA;AAChB,yEAAuE;AAA9D,uGAAA,SAAS,OAAA;AAElB,qEAAmE;AAA1D,qGAAA,QAAQ,OAAA;AACjB,uFAAoF;AAA3E,gHAAA,aAAa,OAAA;AACtB,mGAA+F;AAAtF,uHAAA,gBAAgB,OAAA;AAEzB,iEAA+D;AAAtD,mGAAA,OAAO,OAAA;AAEhB,mFAAgF;AAAvE,8GAAA,YAAY,OAAA;AAErB,+FAA2F;AAAlF,qHAAA,eAAe,OAAA;AAGxB,qEAAmE;AAA1D,qGAAA,QAAQ,OAAA;AACjB,gGAA6F;AAApF,sHAAA,gBAAgB,OAAA;AAEzB,QAAQ;AACR,mCAAkC;AAAzB,wFAAA,EAAE,OAAA;AACX,qDAAmD;AAA1C,mGAAA,OAAO,OAAA;AAChB,gFAA6E;AAApE,oHAAA,eAAe,OAAA;AACxB,8DAA4D;AAAnD,yGAAA,UAAU,OAAA"}
@@ -0,0 +1,2 @@
1
+ export type AbstractConstructor<T = object> = abstract new (...args: unknown[]) => T;
2
+ //# sourceMappingURL=abstract-constructor.type.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"abstract-constructor.type.d.ts","sourceRoot":"","sources":["../../../../src/type/abstract-constructor-type/abstract-constructor.type.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,mBAAmB,CAAC,CAAC,GAAG,MAAM,IAAI,QAAQ,MAAM,GAAG,IAAI,EAAE,OAAO,EAAE,KAAK,CAAC,CAAC"}
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=abstract-constructor.type.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"abstract-constructor.type.js","sourceRoot":"","sources":["../../../../src/type/abstract-constructor-type/abstract-constructor.type.ts"],"names":[],"mappings":""}
@@ -0,0 +1,2 @@
1
+ export type AnyFn = (...args: any) => any;
2
+ //# sourceMappingURL=any-fn.type.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"any-fn.type.d.ts","sourceRoot":"","sources":["../../../../src/type/any-fn-type/any-fn.type.ts"],"names":[],"mappings":"AACA,MAAM,MAAM,KAAK,GAAG,CAAC,GAAG,IAAI,EAAE,GAAG,KAAK,GAAG,CAAC"}
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=any-fn.type.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"any-fn.type.js","sourceRoot":"","sources":["../../../../src/type/any-fn-type/any-fn.type.ts"],"names":[],"mappings":""}
@@ -0,0 +1,3 @@
1
+ import type { AnyFn } from '../any-fn-type/any-fn.type';
2
+ export type MethodDecoratorType<K extends AnyFn> = (target: object, propertyKey: string | symbol, descriptor: TypedPropertyDescriptor<K>) => TypedPropertyDescriptor<K> | void;
3
+ //# sourceMappingURL=method-decorator.type.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"method-decorator.type.d.ts","sourceRoot":"","sources":["../../../../src/type/method-decorator-type/method-decorator.type.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,4BAA4B,CAAC;AAExD,MAAM,MAAM,mBAAmB,CAAC,CAAC,SAAS,KAAK,IAAI,CAC/C,MAAM,EAAE,MAAM,EACd,WAAW,EAAE,MAAM,GAAG,MAAM,EAC5B,UAAU,EAAE,uBAAuB,CAAC,CAAC,CAAC,KAErC,uBAAuB,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC"}
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=method-decorator.type.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"method-decorator.type.js","sourceRoot":"","sources":["../../../../src/type/method-decorator-type/method-decorator.type.ts"],"names":[],"mappings":""}
@@ -1,7 +1,6 @@
1
- interface IsArrayFn {
1
+ export interface IsArrayFn {
2
2
  <T>(array: T[] | null | undefined): array is T[];
3
3
  <T>(array: readonly T[] | null | undefined): array is readonly T[];
4
4
  }
5
5
  export declare const isArray: IsArrayFn;
6
- export {};
7
6
  //# sourceMappingURL=is-array.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"is-array.d.ts","sourceRoot":"","sources":["../../../../../src/type-guard/array/is-array/is-array.ts"],"names":[],"mappings":"AAEA,UAAU,SAAS;IACf,CAAC,CAAC,EAAE,KAAK,EAAE,CAAC,EAAE,GAAG,IAAI,GAAG,SAAS,GAAG,KAAK,IAAI,CAAC,EAAE,CAAC;IACjD,CAAC,CAAC,EAAE,KAAK,EAAE,SAAS,CAAC,EAAE,GAAG,IAAI,GAAG,SAAS,GAAG,KAAK,IAAI,SAAS,CAAC,EAAE,CAAC;CACtE;AAED,eAAO,MAAM,OAAO,EAAE,SACoC,CAAC"}
1
+ {"version":3,"file":"is-array.d.ts","sourceRoot":"","sources":["../../../../../src/type-guard/array/is-array/is-array.ts"],"names":[],"mappings":"AAEA,MAAM,WAAW,SAAS;IACtB,CAAC,CAAC,EAAE,KAAK,EAAE,CAAC,EAAE,GAAG,IAAI,GAAG,SAAS,GAAG,KAAK,IAAI,CAAC,EAAE,CAAC;IACjD,CAAC,CAAC,EAAE,KAAK,EAAE,SAAS,CAAC,EAAE,GAAG,IAAI,GAAG,SAAS,GAAG,KAAK,IAAI,SAAS,CAAC,EAAE,CAAC;CACtE;AAED,eAAO,MAAM,OAAO,EAAE,SACoC,CAAC"}
@@ -1,7 +1,6 @@
1
- interface IsEmptyArrayFn {
1
+ export interface IsEmptyArrayFn {
2
2
  <T>(array: T[] | null | undefined): array is never[];
3
3
  <T>(array: readonly T[] | null | undefined): array is readonly never[];
4
4
  }
5
5
  export declare const isEmptyArray: IsEmptyArrayFn;
6
- export {};
7
6
  //# sourceMappingURL=is-empty-array.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"is-empty-array.d.ts","sourceRoot":"","sources":["../../../../../src/type-guard/array/is-empty-array/is-empty-array.ts"],"names":[],"mappings":"AAEA,UAAU,cAAc;IACpB,CAAC,CAAC,EAAE,KAAK,EAAE,CAAC,EAAE,GAAG,IAAI,GAAG,SAAS,GAAG,KAAK,IAAI,KAAK,EAAE,CAAC;IACrD,CAAC,CAAC,EAAE,KAAK,EAAE,SAAS,CAAC,EAAE,GAAG,IAAI,GAAG,SAAS,GAAG,KAAK,IAAI,SAAS,KAAK,EAAE,CAAC;CAC1E;AAED,eAAO,MAAM,YAAY,EAAE,cACgC,CAAC"}
1
+ {"version":3,"file":"is-empty-array.d.ts","sourceRoot":"","sources":["../../../../../src/type-guard/array/is-empty-array/is-empty-array.ts"],"names":[],"mappings":"AAEA,MAAM,WAAW,cAAc;IAC3B,CAAC,CAAC,EAAE,KAAK,EAAE,CAAC,EAAE,GAAG,IAAI,GAAG,SAAS,GAAG,KAAK,IAAI,KAAK,EAAE,CAAC;IACrD,CAAC,CAAC,EAAE,KAAK,EAAE,SAAS,CAAC,EAAE,GAAG,IAAI,GAAG,SAAS,GAAG,KAAK,IAAI,SAAS,KAAK,EAAE,CAAC;CAC1E;AAED,eAAO,MAAM,YAAY,EAAE,cACgC,CAAC"}
@@ -1,9 +1,8 @@
1
1
  import type { IsNotEmptyArray } from '../../../type/is-not-empty-array-type/is-not-empty-array.type';
2
2
  import type { ReadonlyIsNotEmptyArray } from '../../../type/readonly-is-not-empty-array-type/readonly-is-not-empty-array.type';
3
- interface IsNotEmptyArrayFn {
3
+ export interface IsNotEmptyArrayFn {
4
4
  <T>(array: T[] | null | undefined): array is IsNotEmptyArray<T>;
5
5
  <T>(array: readonly T[] | null | undefined): array is ReadonlyIsNotEmptyArray<T>;
6
6
  }
7
7
  export declare const isNotEmptyArray: IsNotEmptyArrayFn;
8
- export {};
9
8
  //# sourceMappingURL=is-not-empty-array.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"is-not-empty-array.d.ts","sourceRoot":"","sources":["../../../../../src/type-guard/array/is-not-empty-array/is-not-empty-array.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,+DAA+D,CAAC;AACrG,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,iFAAiF,CAAC;AAE/H,UAAU,iBAAiB;IACvB,CAAC,CAAC,EAAE,KAAK,EAAE,CAAC,EAAE,GAAG,IAAI,GAAG,SAAS,GAAG,KAAK,IAAI,eAAe,CAAC,CAAC,CAAC,CAAC;IAChE,CAAC,CAAC,EAAE,KAAK,EAAE,SAAS,CAAC,EAAE,GAAG,IAAI,GAAG,SAAS,GAAG,KAAK,IAAI,uBAAuB,CAAC,CAAC,CAAC,CAAC;CACpF;AAED,eAAO,MAAM,eAAe,EAAE,iBAC8B,CAAC"}
1
+ {"version":3,"file":"is-not-empty-array.d.ts","sourceRoot":"","sources":["../../../../../src/type-guard/array/is-not-empty-array/is-not-empty-array.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,+DAA+D,CAAC;AACrG,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,iFAAiF,CAAC;AAE/H,MAAM,WAAW,iBAAiB;IAC9B,CAAC,CAAC,EAAE,KAAK,EAAE,CAAC,EAAE,GAAG,IAAI,GAAG,SAAS,GAAG,KAAK,IAAI,eAAe,CAAC,CAAC,CAAC,CAAC;IAChE,CAAC,CAAC,EAAE,KAAK,EAAE,SAAS,CAAC,EAAE,GAAG,IAAI,GAAG,SAAS,GAAG,KAAK,IAAI,uBAAuB,CAAC,CAAC,CAAC,CAAC;CACpF;AAED,eAAO,MAAM,eAAe,EAAE,iBAC8B,CAAC"}
@@ -1,4 +1,7 @@
1
+ export type { AbstractConstructor } from './type/abstract-constructor-type/abstract-constructor.type';
2
+ export type { AnyFn } from './type/any-fn-type/any-fn.type';
1
3
  export type { ClassType } from './type/class-type/class.type';
4
+ export type { MethodDecoratorType } from './type/method-decorator-type/method-decorator.type';
2
5
  export type { OnEventFn } from './type/on-event-fn-type/on-event-fn.type';
3
6
  export type { Maybe } from './type/maybe-type/maybe.type';
4
7
  export type { EmptyFn } from './type/empty-fn-type/empty-fn.type';
@@ -11,8 +14,12 @@ export { isPromise } from './type-guard/generic/is-promise/is-promise';
11
14
  export { isString } from './type-guard/string/is-string/is-string';
12
15
  export { isEmptyString } from './type-guard/string/is-empty-string/is-empty-string';
13
16
  export { isNotEmptyString } from './type-guard/string/is-not-empty-string/is-not-empty-string';
17
+ export { isArray } from './type-guard/array/is-array/is-array';
18
+ export type { IsArrayFn } from './type-guard/array/is-array/is-array';
14
19
  export { isEmptyArray } from './type-guard/array/is-empty-array/is-empty-array';
20
+ export type { IsEmptyArrayFn } from './type-guard/array/is-empty-array/is-empty-array';
15
21
  export { isNotEmptyArray } from './type-guard/array/is-not-empty-array/is-not-empty-array';
22
+ export type { IsNotEmptyArrayFn } from './type-guard/array/is-not-empty-array/is-not-empty-array';
16
23
  export { isNumber } from './type-guard/number/is-number/is-number';
17
24
  export { isPositiveNumber } from './type-guard/number/is-positive-number/is-positive-number';
18
25
  export { cs } from './util/cs/cs';
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AACA,YAAY,EAAE,SAAS,EAAE,MAAM,8BAA8B,CAAC;AAC9D,YAAY,EAAE,SAAS,EAAE,MAAM,0CAA0C,CAAC;AAC1E,YAAY,EAAE,KAAK,EAAE,MAAM,8BAA8B,CAAC;AAC1D,YAAY,EAAE,OAAO,EAAE,MAAM,oCAAoC,CAAC;AAClE,YAAY,EAAE,IAAI,EAAE,MAAM,4BAA4B,CAAC;AACvD,YAAY,EAAE,eAAe,EAAE,MAAM,wDAAwD,CAAC;AAC9F,YAAY,EAAE,uBAAuB,EAAE,MAAM,0EAA0E,CAAC;AAGxH,OAAO,EAAE,SAAS,EAAE,MAAM,4CAA4C,CAAC;AACvE,OAAO,EAAE,OAAO,EAAE,MAAM,wCAAwC,CAAC;AACjE,OAAO,EAAE,SAAS,EAAE,MAAM,4CAA4C,CAAC;AAEvE,OAAO,EAAE,QAAQ,EAAE,MAAM,yCAAyC,CAAC;AACnE,OAAO,EAAE,aAAa,EAAE,MAAM,qDAAqD,CAAC;AACpF,OAAO,EAAE,gBAAgB,EAAE,MAAM,6DAA6D,CAAC;AAE/F,OAAO,EAAE,YAAY,EAAE,MAAM,kDAAkD,CAAC;AAChF,OAAO,EAAE,eAAe,EAAE,MAAM,0DAA0D,CAAC;AAE3F,OAAO,EAAE,QAAQ,EAAE,MAAM,yCAAyC,CAAC;AACnE,OAAO,EAAE,gBAAgB,EAAE,MAAM,2DAA2D,CAAC;AAG7F,OAAO,EAAE,EAAE,EAAE,MAAM,cAAc,CAAC;AAClC,OAAO,EAAE,OAAO,EAAE,MAAM,0BAA0B,CAAC;AACnD,OAAO,EAAE,eAAe,EAAE,MAAM,4CAA4C,CAAC;AAC7E,OAAO,EAAE,UAAU,EAAE,MAAM,gCAAgC,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AACA,YAAY,EAAE,mBAAmB,EAAE,MAAM,4DAA4D,CAAC;AACtG,YAAY,EAAE,KAAK,EAAE,MAAM,gCAAgC,CAAC;AAC5D,YAAY,EAAE,SAAS,EAAE,MAAM,8BAA8B,CAAC;AAC9D,YAAY,EAAE,mBAAmB,EAAE,MAAM,oDAAoD,CAAC;AAC9F,YAAY,EAAE,SAAS,EAAE,MAAM,0CAA0C,CAAC;AAC1E,YAAY,EAAE,KAAK,EAAE,MAAM,8BAA8B,CAAC;AAC1D,YAAY,EAAE,OAAO,EAAE,MAAM,oCAAoC,CAAC;AAClE,YAAY,EAAE,IAAI,EAAE,MAAM,4BAA4B,CAAC;AACvD,YAAY,EAAE,eAAe,EAAE,MAAM,wDAAwD,CAAC;AAC9F,YAAY,EAAE,uBAAuB,EAAE,MAAM,0EAA0E,CAAC;AAGxH,OAAO,EAAE,SAAS,EAAE,MAAM,4CAA4C,CAAC;AACvE,OAAO,EAAE,OAAO,EAAE,MAAM,wCAAwC,CAAC;AACjE,OAAO,EAAE,SAAS,EAAE,MAAM,4CAA4C,CAAC;AAEvE,OAAO,EAAE,QAAQ,EAAE,MAAM,yCAAyC,CAAC;AACnE,OAAO,EAAE,aAAa,EAAE,MAAM,qDAAqD,CAAC;AACpF,OAAO,EAAE,gBAAgB,EAAE,MAAM,6DAA6D,CAAC;AAE/F,OAAO,EAAE,OAAO,EAAE,MAAM,sCAAsC,CAAC;AAC/D,YAAY,EAAE,SAAS,EAAE,MAAM,sCAAsC,CAAC;AACtE,OAAO,EAAE,YAAY,EAAE,MAAM,kDAAkD,CAAC;AAChF,YAAY,EAAE,cAAc,EAAE,MAAM,kDAAkD,CAAC;AACvF,OAAO,EAAE,eAAe,EAAE,MAAM,0DAA0D,CAAC;AAC3F,YAAY,EAAE,iBAAiB,EAAE,MAAM,0DAA0D,CAAC;AAElG,OAAO,EAAE,QAAQ,EAAE,MAAM,yCAAyC,CAAC;AACnE,OAAO,EAAE,gBAAgB,EAAE,MAAM,2DAA2D,CAAC;AAG7F,OAAO,EAAE,EAAE,EAAE,MAAM,cAAc,CAAC;AAClC,OAAO,EAAE,OAAO,EAAE,MAAM,0BAA0B,CAAC;AACnD,OAAO,EAAE,eAAe,EAAE,MAAM,4CAA4C,CAAC;AAC7E,OAAO,EAAE,UAAU,EAAE,MAAM,gCAAgC,CAAC"}
package/dist/esm/index.js CHANGED
@@ -5,6 +5,7 @@ export { isPromise } from './type-guard/generic/is-promise/is-promise';
5
5
  export { isString } from './type-guard/string/is-string/is-string';
6
6
  export { isEmptyString } from './type-guard/string/is-empty-string/is-empty-string';
7
7
  export { isNotEmptyString } from './type-guard/string/is-not-empty-string/is-not-empty-string';
8
+ export { isArray } from './type-guard/array/is-array/is-array';
8
9
  export { isEmptyArray } from './type-guard/array/is-empty-array/is-empty-array';
9
10
  export { isNotEmptyArray } from './type-guard/array/is-not-empty-array/is-not-empty-array';
10
11
  export { isNumber } from './type-guard/number/is-number/is-number';
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AASA,cAAc;AACd,OAAO,EAAE,SAAS,EAAE,MAAM,4CAA4C,CAAC;AACvE,OAAO,EAAE,OAAO,EAAE,MAAM,wCAAwC,CAAC;AACjE,OAAO,EAAE,SAAS,EAAE,MAAM,4CAA4C,CAAC;AAEvE,OAAO,EAAE,QAAQ,EAAE,MAAM,yCAAyC,CAAC;AACnE,OAAO,EAAE,aAAa,EAAE,MAAM,qDAAqD,CAAC;AACpF,OAAO,EAAE,gBAAgB,EAAE,MAAM,6DAA6D,CAAC;AAE/F,OAAO,EAAE,YAAY,EAAE,MAAM,kDAAkD,CAAC;AAChF,OAAO,EAAE,eAAe,EAAE,MAAM,0DAA0D,CAAC;AAE3F,OAAO,EAAE,QAAQ,EAAE,MAAM,yCAAyC,CAAC;AACnE,OAAO,EAAE,gBAAgB,EAAE,MAAM,2DAA2D,CAAC;AAE7F,QAAQ;AACR,OAAO,EAAE,EAAE,EAAE,MAAM,cAAc,CAAC;AAClC,OAAO,EAAE,OAAO,EAAE,MAAM,0BAA0B,CAAC;AACnD,OAAO,EAAE,eAAe,EAAE,MAAM,4CAA4C,CAAC;AAC7E,OAAO,EAAE,UAAU,EAAE,MAAM,gCAAgC,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAYA,cAAc;AACd,OAAO,EAAE,SAAS,EAAE,MAAM,4CAA4C,CAAC;AACvE,OAAO,EAAE,OAAO,EAAE,MAAM,wCAAwC,CAAC;AACjE,OAAO,EAAE,SAAS,EAAE,MAAM,4CAA4C,CAAC;AAEvE,OAAO,EAAE,QAAQ,EAAE,MAAM,yCAAyC,CAAC;AACnE,OAAO,EAAE,aAAa,EAAE,MAAM,qDAAqD,CAAC;AACpF,OAAO,EAAE,gBAAgB,EAAE,MAAM,6DAA6D,CAAC;AAE/F,OAAO,EAAE,OAAO,EAAE,MAAM,sCAAsC,CAAC;AAE/D,OAAO,EAAE,YAAY,EAAE,MAAM,kDAAkD,CAAC;AAEhF,OAAO,EAAE,eAAe,EAAE,MAAM,0DAA0D,CAAC;AAG3F,OAAO,EAAE,QAAQ,EAAE,MAAM,yCAAyC,CAAC;AACnE,OAAO,EAAE,gBAAgB,EAAE,MAAM,2DAA2D,CAAC;AAE7F,QAAQ;AACR,OAAO,EAAE,EAAE,EAAE,MAAM,cAAc,CAAC;AAClC,OAAO,EAAE,OAAO,EAAE,MAAM,0BAA0B,CAAC;AACnD,OAAO,EAAE,eAAe,EAAE,MAAM,4CAA4C,CAAC;AAC7E,OAAO,EAAE,UAAU,EAAE,MAAM,gCAAgC,CAAC"}
@@ -0,0 +1,2 @@
1
+ export type AbstractConstructor<T = object> = abstract new (...args: unknown[]) => T;
2
+ //# sourceMappingURL=abstract-constructor.type.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"abstract-constructor.type.d.ts","sourceRoot":"","sources":["../../../../src/type/abstract-constructor-type/abstract-constructor.type.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,mBAAmB,CAAC,CAAC,GAAG,MAAM,IAAI,QAAQ,MAAM,GAAG,IAAI,EAAE,OAAO,EAAE,KAAK,CAAC,CAAC"}
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=abstract-constructor.type.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"abstract-constructor.type.js","sourceRoot":"","sources":["../../../../src/type/abstract-constructor-type/abstract-constructor.type.ts"],"names":[],"mappings":""}
@@ -0,0 +1,2 @@
1
+ export type AnyFn = (...args: any) => any;
2
+ //# sourceMappingURL=any-fn.type.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"any-fn.type.d.ts","sourceRoot":"","sources":["../../../../src/type/any-fn-type/any-fn.type.ts"],"names":[],"mappings":"AACA,MAAM,MAAM,KAAK,GAAG,CAAC,GAAG,IAAI,EAAE,GAAG,KAAK,GAAG,CAAC"}
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=any-fn.type.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"any-fn.type.js","sourceRoot":"","sources":["../../../../src/type/any-fn-type/any-fn.type.ts"],"names":[],"mappings":""}
@@ -0,0 +1,3 @@
1
+ import type { AnyFn } from '../any-fn-type/any-fn.type';
2
+ export type MethodDecoratorType<K extends AnyFn> = (target: object, propertyKey: string | symbol, descriptor: TypedPropertyDescriptor<K>) => TypedPropertyDescriptor<K> | void;
3
+ //# sourceMappingURL=method-decorator.type.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"method-decorator.type.d.ts","sourceRoot":"","sources":["../../../../src/type/method-decorator-type/method-decorator.type.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,4BAA4B,CAAC;AAExD,MAAM,MAAM,mBAAmB,CAAC,CAAC,SAAS,KAAK,IAAI,CAC/C,MAAM,EAAE,MAAM,EACd,WAAW,EAAE,MAAM,GAAG,MAAM,EAC5B,UAAU,EAAE,uBAAuB,CAAC,CAAC,CAAC,KAErC,uBAAuB,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC"}
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=method-decorator.type.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"method-decorator.type.js","sourceRoot":"","sources":["../../../../src/type/method-decorator-type/method-decorator.type.ts"],"names":[],"mappings":""}
@@ -1,7 +1,6 @@
1
- interface IsArrayFn {
1
+ export interface IsArrayFn {
2
2
  <T>(array: T[] | null | undefined): array is T[];
3
3
  <T>(array: readonly T[] | null | undefined): array is readonly T[];
4
4
  }
5
5
  export declare const isArray: IsArrayFn;
6
- export {};
7
6
  //# sourceMappingURL=is-array.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"is-array.d.ts","sourceRoot":"","sources":["../../../../../src/type-guard/array/is-array/is-array.ts"],"names":[],"mappings":"AAEA,UAAU,SAAS;IACf,CAAC,CAAC,EAAE,KAAK,EAAE,CAAC,EAAE,GAAG,IAAI,GAAG,SAAS,GAAG,KAAK,IAAI,CAAC,EAAE,CAAC;IACjD,CAAC,CAAC,EAAE,KAAK,EAAE,SAAS,CAAC,EAAE,GAAG,IAAI,GAAG,SAAS,GAAG,KAAK,IAAI,SAAS,CAAC,EAAE,CAAC;CACtE;AAED,eAAO,MAAM,OAAO,EAAE,SACoC,CAAC"}
1
+ {"version":3,"file":"is-array.d.ts","sourceRoot":"","sources":["../../../../../src/type-guard/array/is-array/is-array.ts"],"names":[],"mappings":"AAEA,MAAM,WAAW,SAAS;IACtB,CAAC,CAAC,EAAE,KAAK,EAAE,CAAC,EAAE,GAAG,IAAI,GAAG,SAAS,GAAG,KAAK,IAAI,CAAC,EAAE,CAAC;IACjD,CAAC,CAAC,EAAE,KAAK,EAAE,SAAS,CAAC,EAAE,GAAG,IAAI,GAAG,SAAS,GAAG,KAAK,IAAI,SAAS,CAAC,EAAE,CAAC;CACtE;AAED,eAAO,MAAM,OAAO,EAAE,SACoC,CAAC"}
@@ -1,7 +1,6 @@
1
- interface IsEmptyArrayFn {
1
+ export interface IsEmptyArrayFn {
2
2
  <T>(array: T[] | null | undefined): array is never[];
3
3
  <T>(array: readonly T[] | null | undefined): array is readonly never[];
4
4
  }
5
5
  export declare const isEmptyArray: IsEmptyArrayFn;
6
- export {};
7
6
  //# sourceMappingURL=is-empty-array.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"is-empty-array.d.ts","sourceRoot":"","sources":["../../../../../src/type-guard/array/is-empty-array/is-empty-array.ts"],"names":[],"mappings":"AAEA,UAAU,cAAc;IACpB,CAAC,CAAC,EAAE,KAAK,EAAE,CAAC,EAAE,GAAG,IAAI,GAAG,SAAS,GAAG,KAAK,IAAI,KAAK,EAAE,CAAC;IACrD,CAAC,CAAC,EAAE,KAAK,EAAE,SAAS,CAAC,EAAE,GAAG,IAAI,GAAG,SAAS,GAAG,KAAK,IAAI,SAAS,KAAK,EAAE,CAAC;CAC1E;AAED,eAAO,MAAM,YAAY,EAAE,cACgC,CAAC"}
1
+ {"version":3,"file":"is-empty-array.d.ts","sourceRoot":"","sources":["../../../../../src/type-guard/array/is-empty-array/is-empty-array.ts"],"names":[],"mappings":"AAEA,MAAM,WAAW,cAAc;IAC3B,CAAC,CAAC,EAAE,KAAK,EAAE,CAAC,EAAE,GAAG,IAAI,GAAG,SAAS,GAAG,KAAK,IAAI,KAAK,EAAE,CAAC;IACrD,CAAC,CAAC,EAAE,KAAK,EAAE,SAAS,CAAC,EAAE,GAAG,IAAI,GAAG,SAAS,GAAG,KAAK,IAAI,SAAS,KAAK,EAAE,CAAC;CAC1E;AAED,eAAO,MAAM,YAAY,EAAE,cACgC,CAAC"}
@@ -1,9 +1,8 @@
1
1
  import type { IsNotEmptyArray } from '../../../type/is-not-empty-array-type/is-not-empty-array.type';
2
2
  import type { ReadonlyIsNotEmptyArray } from '../../../type/readonly-is-not-empty-array-type/readonly-is-not-empty-array.type';
3
- interface IsNotEmptyArrayFn {
3
+ export interface IsNotEmptyArrayFn {
4
4
  <T>(array: T[] | null | undefined): array is IsNotEmptyArray<T>;
5
5
  <T>(array: readonly T[] | null | undefined): array is ReadonlyIsNotEmptyArray<T>;
6
6
  }
7
7
  export declare const isNotEmptyArray: IsNotEmptyArrayFn;
8
- export {};
9
8
  //# sourceMappingURL=is-not-empty-array.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"is-not-empty-array.d.ts","sourceRoot":"","sources":["../../../../../src/type-guard/array/is-not-empty-array/is-not-empty-array.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,+DAA+D,CAAC;AACrG,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,iFAAiF,CAAC;AAE/H,UAAU,iBAAiB;IACvB,CAAC,CAAC,EAAE,KAAK,EAAE,CAAC,EAAE,GAAG,IAAI,GAAG,SAAS,GAAG,KAAK,IAAI,eAAe,CAAC,CAAC,CAAC,CAAC;IAChE,CAAC,CAAC,EAAE,KAAK,EAAE,SAAS,CAAC,EAAE,GAAG,IAAI,GAAG,SAAS,GAAG,KAAK,IAAI,uBAAuB,CAAC,CAAC,CAAC,CAAC;CACpF;AAED,eAAO,MAAM,eAAe,EAAE,iBAC8B,CAAC"}
1
+ {"version":3,"file":"is-not-empty-array.d.ts","sourceRoot":"","sources":["../../../../../src/type-guard/array/is-not-empty-array/is-not-empty-array.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,+DAA+D,CAAC;AACrG,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,iFAAiF,CAAC;AAE/H,MAAM,WAAW,iBAAiB;IAC9B,CAAC,CAAC,EAAE,KAAK,EAAE,CAAC,EAAE,GAAG,IAAI,GAAG,SAAS,GAAG,KAAK,IAAI,eAAe,CAAC,CAAC,CAAC,CAAC;IAChE,CAAC,CAAC,EAAE,KAAK,EAAE,SAAS,CAAC,EAAE,GAAG,IAAI,GAAG,SAAS,GAAG,KAAK,IAAI,uBAAuB,CAAC,CAAC,CAAC,CAAC;CACpF;AAED,eAAO,MAAM,eAAe,EAAE,iBAC8B,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rnw-community/shared",
3
- "version": "1.9.0",
3
+ "version": "1.10.1",
4
4
  "description": "Shared useful utils and types",
5
5
  "keywords": [
6
6
  "generic utils",
@@ -44,5 +44,5 @@
44
44
  "clear": "rm -rf coverage && rm -rf dist && rm -f *.tsbuildinfo",
45
45
  "clear:deps": "rm -rf ./node_modules && rm -rf ./dist"
46
46
  },
47
- "gitHead": "21e27a2e0affc80fb4d293460b46cf8de382c39f"
47
+ "gitHead": "d11c9ed62d5a088dc9191f65dce822aab0e7b983"
48
48
  }
package/readme.md CHANGED
@@ -53,6 +53,9 @@ Commonly used typescript types:
53
53
  - [Enum](src/type/enum-type/enum-type.md)
54
54
  - [IsNotEmptyArray](src/type/is-not-empty-array-type/is-not-empty-array.type.md)
55
55
  - [ReadonlyIsNotEmptyArray](src/type/readonly-is-not-empty-array-type/readonly-is-not-empty-array.type.md)
56
+ - [AnyFn](src/type/any-fn-type/any-fn.type.md)
57
+ - [AbstractConstructor](src/type/abstract-constructor-type/abstract-constructor.type.md)
58
+ - [MethodDecoratorType](src/type/method-decorator-type/method-decorator.type.md)
56
59
 
57
60
  ## License
58
61