ts-type 1.2.37 → 2.0.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.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,70 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [2.0.1](https://github.com/bluelovers/ws-ts-type/compare/ts-type@1.2.40...ts-type@2.0.1) (2021-11-20)
7
+
8
+
9
+ ### 🐛 Bug Fixes
10
+
11
+ * update `PromisifyAll` ([f7762f9](https://github.com/bluelovers/ws-ts-type/commit/f7762f9c140cad8b78c21617501e8d1de4241e17))
12
+
13
+
14
+ ### 📦 Code Refactoring
15
+
16
+ * split and breaking changes ([c5b8a8c](https://github.com/bluelovers/ws-ts-type/commit/c5b8a8c5b61ef0fd193878ff56dec7dbf8a2f6f2))
17
+
18
+
19
+
20
+
21
+
22
+ ## [1.2.40](https://github.com/bluelovers/ws-ts-type/compare/ts-type@1.2.39...ts-type@1.2.40) (2021-08-31)
23
+
24
+
25
+ ### ✨ Features
26
+
27
+ * add `ITSNumberValue` ([98d93ed](https://github.com/bluelovers/ws-ts-type/commit/98d93ed182c0cfbb1d968940b5ec6b3ca73ae32b))
28
+
29
+
30
+ ### 🛠 Build System
31
+
32
+ * **release:** publish ([ecdfb1d](https://github.com/bluelovers/ws-ts-type/commit/ecdfb1d1bf45be7c42c684aa53013d5e42b43ff2))
33
+
34
+
35
+ ### 🔖 Miscellaneous
36
+
37
+ * . ([c2bd5ed](https://github.com/bluelovers/ws-ts-type/commit/c2bd5ede16dddfb118ce7f819ad08b6db94ffeda))
38
+
39
+
40
+
41
+
42
+
43
+ ## [1.2.39](https://github.com/bluelovers/ws-ts-type/compare/ts-type@1.2.38...ts-type@1.2.39) (2021-07-20)
44
+
45
+
46
+ ### 🔖 Miscellaneous
47
+
48
+ * . ([c65df57](https://github.com/bluelovers/ws-ts-type/commit/c65df5763d3293781d1da658cf442457c2a0608d))
49
+
50
+
51
+
52
+
53
+
54
+ ## [1.2.38](https://github.com/bluelovers/ws-ts-type/compare/ts-type@1.2.37...ts-type@1.2.38) (2021-07-19)
55
+
56
+
57
+ ### 🛠 Build System
58
+
59
+ * **release:** publish ([40e189c](https://github.com/bluelovers/ws-ts-type/commit/40e189c1fed20a48f1eca42f65fbdb1bbe4de7fd))
60
+
61
+
62
+ ### 🔖 Miscellaneous
63
+
64
+ * . ([c53bb35](https://github.com/bluelovers/ws-ts-type/commit/c53bb359f601118292cf9508d2e1bf8810464a24))
65
+
66
+
67
+
68
+
69
+
6
70
  ## [1.2.37](https://github.com/bluelovers/ws-ts-type/compare/ts-type@1.2.36...ts-type@1.2.37) (2021-07-19)
7
71
 
8
72
 
@@ -1,7 +1,6 @@
1
1
  /**
2
2
  * Created by user on 2019/6/8.
3
3
  */
4
- import { ITSPropertyKey } from '..';
5
4
  /**
6
5
  * Exclude from T those types that are assignable to U, and replace to R
7
6
  */
@@ -10,25 +9,6 @@ export declare type ITSExclude2<T, U, R = T> = T extends U ? never : R;
10
9
  * Extract from T those types that are assignable to U, and replace to R
11
10
  */
12
11
  export declare type ITSExtract2<T, U, R = T> = T extends U ? R : never;
13
- export declare type ITSExtractRecord<M, T, K extends keyof M = keyof M> = {
14
- [P in K]: Extract<M[P], T>;
15
- };
16
- export declare type ITSExtractRecordNoNull<M, T, K extends keyof M = keyof M> = {
17
- [P in K]: NonNullable<M[P]>;
18
- };
19
- export declare type ITSExtractKeyofRecord<M, T> = keyof ITSExtractRecord<M, T>;
20
- export declare type ITSExcludeRecord<M, T, K extends keyof M = keyof M> = {
21
- [P in K]: Exclude<M[P], T>;
22
- };
23
- export declare type ITSExcludeRecordNoNull<M, T, K extends keyof M = keyof M> = {
24
- [P in K]: NonNullable<M[P]>;
25
- };
26
- export declare type ITSExcludeKeyofRecord<M, T> = keyof ITSExcludeRecord<M, T>;
27
- /**
28
- * filter all member is function and key type is string or symbol
29
- */
30
- export declare type ITSMemberMethods<T> = ITSExtractRecord<T, Function, Extract<keyof T, ITSPropertyKey>>;
31
- export declare type ITSKeyofMemberMethods<T> = ITSExtractKeyof<ITSMemberMethods<T>, ITSPropertyKey>;
32
12
  export declare type ITSExtractKeyof<T, U> = Extract<keyof T, U>;
33
13
  export declare type ITSExtractArrayLike<A, K extends Extract<keyof A, number> = Extract<keyof A, number>> = {
34
14
  [Index in K]: A[Index];
@@ -1 +1 @@
1
- {"version":3,"file":"filter.js","sourceRoot":"","sources":["filter.ts"],"names":[],"mappings":";AAAA;;GAEG","sourcesContent":["/**\n * Created by user on 2019/6/8.\n */\n\nimport { ITSPropertyKey } from '..';\n\n/**\n * Exclude from T those types that are assignable to U, and replace to R\n */\nexport type ITSExclude2<T, U, R = T> = T extends U ? never : R;\n\n/**\n * Extract from T those types that are assignable to U, and replace to R\n */\nexport type ITSExtract2<T, U, R = T> = T extends U ? R : never;\n\nexport type ITSExtractRecord<M, T, K extends keyof M = keyof M> = {\n\t[P in K]: Extract<M[P], T>;\n};\n\nexport type ITSExtractRecordNoNull<M, T, K extends keyof M = keyof M> = {\n\t[P in K]: NonNullable<M[P]>;\n};\n\nexport type ITSExtractKeyofRecord<M, T> = keyof ITSExtractRecord<M, T>;\n\nexport type ITSExcludeRecord<M, T, K extends keyof M = keyof M> = {\n\t[P in K]: Exclude<M[P], T>;\n};\n\nexport type ITSExcludeRecordNoNull<M, T, K extends keyof M = keyof M> = {\n\t[P in K]: NonNullable<M[P]>;\n};\n\nexport type ITSExcludeKeyofRecord<M, T> = keyof ITSExcludeRecord<M, T>;\n\n/**\n * filter all member is function and key type is string or symbol\n */\nexport type ITSMemberMethods<T> = ITSExtractRecord<T, Function, Extract<keyof T, ITSPropertyKey>>;\n\nexport type ITSKeyofMemberMethods<T> = ITSExtractKeyof<ITSMemberMethods<T>, ITSPropertyKey>;\n\nexport type ITSExtractKeyof<T, U> = Extract<keyof T, U>;\n\nexport type ITSExtractArrayLike<A, K extends Extract<keyof A, number> = Extract<keyof A, number>> = {\n\t[Index in K]: A[Index];\n};\n\nexport type ITSKeyofArrayLike<A> = keyof ITSExtractArrayLike<A>;\n\nexport type ITSNullable<T> = T extends null | undefined ? T : never;\n\n/**\n * 找出 T 當中 與 U 相同的 key\n */\nexport type ITSKeyofSame<T, U> = Extract<keyof T, keyof U>;\n/**\n * 找出 T 當中 與 U 不同的 key\n */\nexport type ITSKeyofDiff<T, U> = Exclude<keyof T, ITSKeyofSame<T, U>>;\n\n/**\n * 找出 T 與 U 當中同時存在的 key\n */\nexport type ITSKeyofBothSame<T, U> = ITSKeyofSame<T, U> | ITSKeyofSame<U, T>;\n\n/**\n * 去除 T 與 U 當中同時存在的 key\n */\nexport type ITSKeyofBothDiff<T, U> = ITSKeyofDiff<T, U> | ITSKeyofDiff<U, T>;\n\n\n"]}
1
+ {"version":3,"file":"filter.js","sourceRoot":"","sources":["filter.ts"],"names":[],"mappings":";AAAA;;GAEG","sourcesContent":["/**\n * Created by user on 2019/6/8.\n */\n\n/**\n * Exclude from T those types that are assignable to U, and replace to R\n */\nexport type ITSExclude2<T, U, R = T> = T extends U ? never : R;\n\n/**\n * Extract from T those types that are assignable to U, and replace to R\n */\nexport type ITSExtract2<T, U, R = T> = T extends U ? R : never;\n\nexport type ITSExtractKeyof<T, U> = Extract<keyof T, U>;\n\nexport type ITSExtractArrayLike<A, K extends Extract<keyof A, number> = Extract<keyof A, number>> = {\n\t[Index in K]: A[Index];\n};\n\nexport type ITSKeyofArrayLike<A> = keyof ITSExtractArrayLike<A>;\n\nexport type ITSNullable<T> = T extends null | undefined ? T : never;\n\n/**\n * 找出 T 當中 與 U 相同的 key\n */\nexport type ITSKeyofSame<T, U> = Extract<keyof T, keyof U>;\n/**\n * 找出 T 當中 與 U 不同的 key\n */\nexport type ITSKeyofDiff<T, U> = Exclude<keyof T, ITSKeyofSame<T, U>>;\n\n/**\n * 找出 T 與 U 當中同時存在的 key\n */\nexport type ITSKeyofBothSame<T, U> = ITSKeyofSame<T, U> | ITSKeyofSame<U, T>;\n\n/**\n * 去除 T 與 U 當中同時存在的 key\n */\nexport type ITSKeyofBothDiff<T, U> = ITSKeyofDiff<T, U> | ITSKeyofDiff<U, T>;\n\n\n"]}
@@ -0,0 +1,5 @@
1
+ import { ITSToStringLiteral } from './string';
2
+ export declare type ITSNumberString<N extends number | bigint = number> = ITSToStringLiteral<N>;
3
+ export declare type ITSUnpackNumberString<S extends string, R = never> = S extends ITSNumberString<infer N> ? N : R;
4
+ export declare type ITSNumberValue = number | string;
5
+ export declare type ITSNumberValue2 = number | ITSNumberString;
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=number.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"number.js","sourceRoot":"","sources":["number.ts"],"names":[],"mappings":"","sourcesContent":["import { ITSToStringLiteral } from './string';\n\nexport type ITSNumberString<N extends number | bigint = number> = ITSToStringLiteral<N>;\n\nexport type ITSUnpackNumberString<S extends string, R = never> = S extends ITSNumberString<infer N> ? N : R;\n\nexport type ITSNumberValue = number | string;\n\nexport type ITSNumberValue2 = number | ITSNumberString;\n"]}
@@ -0,0 +1,8 @@
1
+ import { ITSExtractRecord } from './pick-type';
2
+ import { ITSPropertyKey } from '../../type/base';
3
+ import { ITSExtractKeyof } from '../filter';
4
+ /**
5
+ * filter all member is function and key type is string or symbol
6
+ */
7
+ export declare type ITSMemberMethods<T> = ITSExtractRecord<T, Function, Extract<keyof T, ITSPropertyKey>>;
8
+ export declare type ITSKeyofMemberMethods<T> = ITSExtractKeyof<ITSMemberMethods<T>, ITSPropertyKey>;
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=member.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"member.js","sourceRoot":"","sources":["member.ts"],"names":[],"mappings":"","sourcesContent":["import { ITSExtractRecord } from './pick-type';\nimport { ITSPropertyKey } from '../../type/base';\nimport { ITSExtractKeyof } from '../filter';\n\n/**\n * filter all member is function and key type is string or symbol\n */\nexport type ITSMemberMethods<T> = ITSExtractRecord<T, Function, Extract<keyof T, ITSPropertyKey>>;\nexport type ITSKeyofMemberMethods<T> = ITSExtractKeyof<ITSMemberMethods<T>, ITSPropertyKey>;\n"]}
@@ -0,0 +1,4 @@
1
+ /**
2
+ * try check key is partial of record
3
+ */
4
+ export declare type ITSKeyIsPartialOfRecord<T, K extends keyof T> = Omit<T, K> extends T ? K : never;
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=partial.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"partial.js","sourceRoot":"","sources":["partial.ts"],"names":[],"mappings":"","sourcesContent":["\n/**\n * try check key is partial of record\n */\nexport type ITSKeyIsPartialOfRecord<T, K extends keyof T> = Omit<T, K> extends T ? K : never;\n"]}
@@ -0,0 +1,83 @@
1
+ /**
2
+ * @see https://github.com/type-challenges/type-challenges/blob/master/questions/2595-medium-pickbytype/README.md
3
+ * @see https://github.com/type-challenges/type-challenges/issues/3814
4
+ */
5
+ import { ITSNullPrimitive } from '../../type/base';
6
+ import { ITSValueOf } from '../key-value';
7
+ import { ITSExclude2, ITSExtract2 } from '../filter';
8
+ export declare type ITSKeyofByExtractType<T extends Record<keyof any, any>, U, K extends keyof T = keyof T> = K extends keyof T ? T[K] extends U ? K : never : never;
9
+ /**
10
+ * @see https://github.com/type-challenges/type-challenges/blob/master/questions/2595-medium-pickbytype/README.md
11
+ * @see https://github.com/type-challenges/type-challenges/issues/3814
12
+ */
13
+ export declare type ITSKeyofByExcludeType<T extends Record<keyof any, any>, U, K extends keyof T = keyof T> = K extends keyof T ? T[K] extends U ? never : K : never;
14
+ /**
15
+ * From `T`, pick a set of properties whose type are assignable to `U`.
16
+ *
17
+ * @example
18
+ type OmitBoolean = ITSPickByType<{
19
+ name: string
20
+ count: number
21
+ isReadonly: boolean
22
+ isEnable: boolean
23
+ }, boolean>
24
+ *
25
+ * @see https://github.com/type-challenges/type-challenges/blob/master/questions/2595-medium-pickbytype/README.md
26
+ * @see https://github.com/type-challenges/type-challenges/issues/3814
27
+ */
28
+ export declare type ITSPickByType<T extends Record<keyof any, any>, U, K extends keyof T = keyof T> = {
29
+ [P in ITSKeyofByExtractType<T, U, K>]: T[P];
30
+ };
31
+ /**
32
+ * From `T`, pick a set of properties whose type are not assignable to `U`.
33
+ *
34
+ * @example
35
+ type OmitBoolean = ITSOmitByType<{
36
+ name: string
37
+ count: number
38
+ isReadonly: boolean
39
+ isEnable: boolean
40
+ }, boolean>
41
+ *
42
+ * @see https://github.com/type-challenges/type-challenges/blob/master/questions/2595-medium-pickbytype/README.md
43
+ * @see https://github.com/type-challenges/type-challenges/issues/3814
44
+ */
45
+ export declare type ITSOmitByType<T extends Record<keyof any, any>, U, K extends keyof T = keyof T> = {
46
+ [P in ITSKeyofByExcludeType<T, U, K>]: T[P];
47
+ };
48
+ /**
49
+ * @internal
50
+ */
51
+ export declare type ITSRecordExcludeToKey<Base, Type> = {
52
+ [Key in keyof Base]: ITSExclude2<Base[Key], Type, Key>;
53
+ };
54
+ /**
55
+ * @internal
56
+ */
57
+ export declare type ITSRecordExtractToKey<Base, Type> = {
58
+ [Key in keyof Base]: ITSExtract2<Base[Key], Type, Key>;
59
+ };
60
+ export declare type ITSKeyOfRecordExcludeToKey<Base, Type> = ITSValueOf<ITSRecordExcludeToKey<Base, Type>>;
61
+ export declare type ITSKeyOfRecordExtractToKey<Base, Type> = ITSValueOf<ITSRecordExtractToKey<Base, Type>>;
62
+ export declare type ITSPickRecordType<Base, Type> = Pick<Base, ITSKeyOfRecordExtractToKey<Base, Type>>;
63
+ export declare type ITSOmitRecordType<Base, Type> = Pick<Base, ITSKeyOfRecordExcludeToKey<Base, Type>>;
64
+ /**
65
+ * @deprecated use `ITSPickByType<M, T, K>`
66
+ */
67
+ export declare type ITSExtractRecord<M, T, K extends keyof M = keyof M> = ITSPickByType<M, T, K>;
68
+ export declare type ITSExtractRecordNoNull<M, T, K extends keyof M = keyof M> = {
69
+ [P in K]: NonNullable<M[P]>;
70
+ };
71
+ /**
72
+ * @deprecated use `ITSOmitByType<M, T, K>`
73
+ */
74
+ export declare type ITSExcludeRecord<M, T, K extends keyof M = keyof M> = ITSOmitByType<M, T, K>;
75
+ export declare type ITSExcludeRecordNoNull<M, T, K extends keyof M = keyof M> = ITSOmitByType<M, ITSNullPrimitive, K>;
76
+ /**
77
+ * @deprecated use `ITSKeyofByExtractType<T, U, K>`
78
+ */
79
+ export declare type ITSExtractKeyofRecord<M, T, K extends keyof M = keyof M> = ITSKeyofByExtractType<M, T, K>;
80
+ /**
81
+ * @deprecated use `ITSKeyofByExcludeType<M, T, K>`
82
+ */
83
+ export declare type ITSExcludeKeyofRecord<M, T, K extends keyof M = keyof M> = ITSKeyofByExcludeType<M, T, K>;
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=pick-type.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"pick-type.js","sourceRoot":"","sources":["pick-type.ts"],"names":[],"mappings":"","sourcesContent":["/**\n * @see https://github.com/type-challenges/type-challenges/blob/master/questions/2595-medium-pickbytype/README.md\n * @see https://github.com/type-challenges/type-challenges/issues/3814\n */\nimport { ITSNullPrimitive } from '../../type/base';\nimport { ITSValueOf } from '../key-value';\nimport { ITSExclude2, ITSExtract2 } from '../filter';\n\nexport type ITSKeyofByExtractType<T extends Record<keyof any, any>, U, K extends keyof T = keyof T> = K extends keyof T ? T[K] extends U ? K : never : never;\n\n/**\n * @see https://github.com/type-challenges/type-challenges/blob/master/questions/2595-medium-pickbytype/README.md\n * @see https://github.com/type-challenges/type-challenges/issues/3814\n */\nexport type ITSKeyofByExcludeType<T extends Record<keyof any, any>, U, K extends keyof T = keyof T> = K extends keyof T ? T[K] extends U ? never : K : never;\n\n/**\n * From `T`, pick a set of properties whose type are assignable to `U`.\n *\n * @example\ntype OmitBoolean = ITSPickByType<{\n name: string\n count: number\n isReadonly: boolean\n isEnable: boolean\n}, boolean>\n *\n * @see https://github.com/type-challenges/type-challenges/blob/master/questions/2595-medium-pickbytype/README.md\n * @see https://github.com/type-challenges/type-challenges/issues/3814\n */\nexport type ITSPickByType<T extends Record<keyof any, any>, U, K extends keyof T = keyof T> = {\n [P in ITSKeyofByExtractType<T, U, K>]: T[P]\n}\n\n/**\n * From `T`, pick a set of properties whose type are not assignable to `U`.\n *\n * @example\ntype OmitBoolean = ITSOmitByType<{\n name: string\n count: number\n isReadonly: boolean\n isEnable: boolean\n}, boolean>\n *\n * @see https://github.com/type-challenges/type-challenges/blob/master/questions/2595-medium-pickbytype/README.md\n * @see https://github.com/type-challenges/type-challenges/issues/3814\n */\nexport type ITSOmitByType<T extends Record<keyof any, any>, U, K extends keyof T = keyof T> = {\n [P in ITSKeyofByExcludeType<T, U, K>]: T[P]\n}\n\n/**\n * @internal\n */\nexport type ITSRecordExcludeToKey<Base, Type> = {\n [Key in keyof Base]: ITSExclude2<Base[Key], Type, Key>\n};\n/**\n * @internal\n */\nexport type ITSRecordExtractToKey<Base, Type> = {\n [Key in keyof Base]: ITSExtract2<Base[Key], Type, Key>\n};\n\nexport type ITSKeyOfRecordExcludeToKey<Base, Type> = ITSValueOf<ITSRecordExcludeToKey<Base, Type>>;\nexport type ITSKeyOfRecordExtractToKey<Base, Type> = ITSValueOf<ITSRecordExtractToKey<Base, Type>>;\n\nexport type ITSPickRecordType<Base, Type> = Pick<Base, ITSKeyOfRecordExtractToKey<Base, Type>>;\nexport type ITSOmitRecordType<Base, Type> = Pick<Base, ITSKeyOfRecordExcludeToKey<Base, Type>>;\n\n/**\n * @deprecated use `ITSPickByType<M, T, K>`\n */\nexport type ITSExtractRecord<M, T, K extends keyof M = keyof M> = ITSPickByType<M, T, K>\n\nexport type ITSExtractRecordNoNull<M, T, K extends keyof M = keyof M> = {\n [P in K]: NonNullable<M[P]>;\n};\n\n/**\n * @deprecated use `ITSOmitByType<M, T, K>`\n */\nexport type ITSExcludeRecord<M, T, K extends keyof M = keyof M> = ITSOmitByType<M, T, K>;\n\nexport type ITSExcludeRecordNoNull<M, T, K extends keyof M = keyof M> = ITSOmitByType<M, ITSNullPrimitive, K>;\n\n/**\n * @deprecated use `ITSKeyofByExtractType<T, U, K>`\n */\nexport type ITSExtractKeyofRecord<M, T, K extends keyof M = keyof M> = ITSKeyofByExtractType<M, T, K>;\n\n/**\n * @deprecated use `ITSKeyofByExcludeType<M, T, K>`\n */\nexport type ITSExcludeKeyofRecord<M, T, K extends keyof M = keyof M> = ITSKeyofByExcludeType<M, T, K>;\n"]}
@@ -1,20 +1,7 @@
1
1
  /**
2
2
  * https://stackoverflow.com/a/55479659/4563339
3
3
  */
4
- import { ITSExclude2, ITSExtract2 } from './filter';
5
- import { ITSValueOf } from './key-value';
6
- export declare type ITSRecordExcludeToKey<Base, Type> = {
7
- [Key in keyof Base]: ITSExclude2<Base[Key], Type, Key>;
8
- };
9
- export declare type ITSRecordExtractToKey<Base, Type> = {
10
- [Key in keyof Base]: ITSExtract2<Base[Key], Type, Key>;
11
- };
12
- export declare type ITSKeyOfRecordExcludeToKey<Base, Type> = ITSValueOf<ITSRecordExcludeToKey<Base, Type>>;
13
- export declare type ITSKeyOfRecordExtractToKey<Base, Type> = ITSValueOf<ITSRecordExtractToKey<Base, Type>>;
14
- /**
15
- * try check key is partial of record
16
- */
17
- export declare type ITSKeyIsPartialOfRecord<T, K extends keyof T> = Omit<T, K> extends T ? K : never;
4
+ export { ITSKeyIsPartialOfRecord } from './record/partial';
18
5
  /**
19
6
  * returns a union of the readonly keys of an Object.
20
7
  *
@@ -1,3 +1,6 @@
1
1
  "use strict";
2
+ /**
3
+ * https://stackoverflow.com/a/55479659/4563339
4
+ */
2
5
  Object.defineProperty(exports, "__esModule", { value: true });
3
6
  //# sourceMappingURL=record.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"record.js","sourceRoot":"","sources":["record.ts"],"names":[],"mappings":"","sourcesContent":["/**\n * https://stackoverflow.com/a/55479659/4563339\n */\nimport { ITSExclude2, ITSExtract2 } from './filter';\nimport { ITSValueOf } from './key-value';\n\nexport type ITSRecordExcludeToKey<Base, Type> = {\n\t[Key in keyof Base]: ITSExclude2<Base[Key], Type, Key>\n};\n\nexport type ITSRecordExtractToKey<Base, Type> = {\n\t[Key in keyof Base]: ITSExtract2<Base[Key], Type, Key>\n};\n\nexport type ITSKeyOfRecordExcludeToKey<Base, Type> = ITSValueOf<ITSRecordExcludeToKey<Base, Type>>;\n\nexport type ITSKeyOfRecordExtractToKey<Base, Type> = ITSValueOf<ITSRecordExtractToKey<Base, Type>>;\n\n/**\n * try check key is partial of record\n */\nexport type ITSKeyIsPartialOfRecord<T, K extends keyof T> = Omit<T, K> extends T ? K : never;\n\n/**\n * returns a union of the readonly keys of an Object.\n *\n * @see https://github.com/type-challenges/type-challenges/blob/master/questions/5-extreme-readonly-keys/README.md\n * @see https://github.com/type-challenges/type-challenges/issues/87\n *\n * @alias ITSGetReadonlyKeys\n *\n * @example\n * interface Todo {\n * readonly title: string\n * readonly description: string\n * completed: boolean\n * }\n * type Keys = ITSKeyOfRecordExtractReadonly<Todo>\n * // expected to be \"title\" | \"description\"\n */\nexport type ITSKeyOfRecordExtractReadonly<T> = {[K in keyof T]-?: (<U>() => U extends {-readonly [P in K]: T[K]} ? 1 : 2) extends (<U>() => U extends {[P in K]: T[K]} ? 1 : 2) ? never : K}[keyof T];\n\nexport type { ITSKeyOfRecordExtractReadonly as ITSGetReadonlyKeys }\n\nexport type ITSKeyOfRecordExcludeReadonly<T> = Exclude<keyof T, ITSKeyOfRecordExtractReadonly<T>>\n\nexport type ITSKeyIsReadonlyOfRecord<T, K extends ITSKeyOfRecordExtractReadonly<T>> = Extract<K, ITSKeyOfRecordExtractReadonly<T>>;\n\nexport type ITSKeyIsNotReadonlyOfRecord<T, K extends ITSKeyOfRecordExcludeReadonly<T>> = Extract<K, ITSKeyOfRecordExcludeReadonly<T>>;\n"]}
1
+ {"version":3,"file":"record.js","sourceRoot":"","sources":["record.ts"],"names":[],"mappings":";AAAA;;GAEG","sourcesContent":["/**\n * https://stackoverflow.com/a/55479659/4563339\n */\n\nexport { ITSKeyIsPartialOfRecord } from './record/partial';\n\n/**\n * returns a union of the readonly keys of an Object.\n *\n * @see https://github.com/type-challenges/type-challenges/blob/master/questions/5-extreme-readonly-keys/README.md\n * @see https://github.com/type-challenges/type-challenges/issues/87\n *\n * @alias ITSGetReadonlyKeys\n *\n * @example\n * interface Todo {\n * readonly title: string\n * readonly description: string\n * completed: boolean\n * }\n * type Keys = ITSKeyOfRecordExtractReadonly<Todo>\n * // expected to be \"title\" | \"description\"\n */\nexport type ITSKeyOfRecordExtractReadonly<T> = {[K in keyof T]-?: (<U>() => U extends {-readonly [P in K]: T[K]} ? 1 : 2) extends (<U>() => U extends {[P in K]: T[K]} ? 1 : 2) ? never : K}[keyof T];\n\nexport type { ITSKeyOfRecordExtractReadonly as ITSGetReadonlyKeys }\n\nexport type ITSKeyOfRecordExcludeReadonly<T> = Exclude<keyof T, ITSKeyOfRecordExtractReadonly<T>>\n\nexport type ITSKeyIsReadonlyOfRecord<T, K extends ITSKeyOfRecordExtractReadonly<T>> = Extract<K, ITSKeyOfRecordExtractReadonly<T>>;\n\nexport type ITSKeyIsNotReadonlyOfRecord<T, K extends ITSKeyOfRecordExcludeReadonly<T>> = Extract<K, ITSKeyOfRecordExcludeReadonly<T>>;\n"]}
@@ -0,0 +1,5 @@
1
+ export declare type ITSToStringLiteralAllowedType = string | number | boolean | bigint;
2
+ export declare type ITSToStringLiteral<T extends ITSToStringLiteralAllowedType> = `${T}`;
3
+ export declare type ITSTypeAndStringLiteral<T extends ITSToStringLiteralAllowedType> = T | ITSToStringLiteral<T>;
4
+ export declare type ITAndStringLiteral<T extends ITSToStringLiteralAllowedType, S = string> = S | ITSToStringLiteral<T>;
5
+ export declare type ITAndTypeAndStringLiteral<T extends ITSToStringLiteralAllowedType, S = string> = S | ITSTypeAndStringLiteral<T>;
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=string.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"string.js","sourceRoot":"","sources":["string.ts"],"names":[],"mappings":"","sourcesContent":["\nexport type ITSToStringLiteralAllowedType = string | number | boolean | bigint;\n\nexport type ITSToStringLiteral<T extends ITSToStringLiteralAllowedType> = `${T}`\n\nexport type ITSTypeAndStringLiteral<T extends ITSToStringLiteralAllowedType> = T | ITSToStringLiteral<T>\n\nexport type ITAndStringLiteral<T extends ITSToStringLiteralAllowedType, S = string> = S | ITSToStringLiteral<T>\n\nexport type ITAndTypeAndStringLiteral<T extends ITSToStringLiteralAllowedType, S = string> = S | ITSTypeAndStringLiteral<T>\n"]}
package/lib/index.d.ts CHANGED
@@ -4,13 +4,19 @@ export * from './helper/filter';
4
4
  export * from './helper/infer';
5
5
  export * from './helper/intersection';
6
6
  export * from './helper/key-value';
7
+ export * from './helper/number';
7
8
  export * from './helper/overwrite';
8
9
  export * from './helper/readonly';
9
10
  export * from './helper/record';
11
+ export * from './helper/record/member';
12
+ export * from './helper/record/partial';
13
+ export * from './helper/record/pick-type';
14
+ export * from './helper/string';
10
15
  export * from './helper/tuple';
11
16
  export * from './helper/typeof';
12
17
  export * from './helper/unpacked';
13
18
  export * from './internal/filter';
19
+ export * from './internal/logic/string-literal';
14
20
  export * from './logic/any';
15
21
  export * from './type/base';
16
22
  export * from './type/bluebird';
@@ -18,3 +24,4 @@ export * from './type/decorators';
18
24
  export * from './type/promise';
19
25
  export * from './type/proxy';
20
26
  export * from './type/record';
27
+ export * from './type/record/partial';
@@ -0,0 +1,2 @@
1
+ export declare type IsAUnion<T, Y = true, N = false, U = T> = U extends any ? ([T] extends [U] ? N : Y) : never;
2
+ export declare type IsASingleStringLiteral<T extends string, Y = true, N = false> = string extends T ? N : [T] extends [never] ? N : IsAUnion<T, N, Y>;
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=string-literal.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"string-literal.js","sourceRoot":"","sources":["string-literal.ts"],"names":[],"mappings":"","sourcesContent":["\n// detect if T is a union\nexport type IsAUnion<T, Y = true, N = false, U = T> = U extends any\n\t? ([T] extends [U] ? N : Y)\n\t: never;\n\n// detect if T is a single string literal\nexport type IsASingleStringLiteral<\n\tT extends string,\n\tY = true,\n\tN = false\n\t> = string extends T ? N : [T] extends [never] ? N : IsAUnion<T, N, Y>;\n"]}
@@ -8,3 +8,5 @@ export declare type ITSConstructorLike<T extends any = any> = new (...args: any)
8
8
  export declare type ITSValueOrArray<T> = T | T[];
9
9
  export declare type ITSPropertyKey = string | symbol;
10
10
  export declare type ITSAnyFunction = ITSTypeFunction<any>;
11
+ export declare type ITSBasicPrimitive = number | string | boolean;
12
+ export declare type ITSNullPrimitive = null | undefined;
@@ -1 +1 @@
1
- {"version":3,"file":"base.js","sourceRoot":"","sources":["base.ts"],"names":[],"mappings":";AAAA;;GAEG","sourcesContent":["/**\n * Created by user on 2019/5/17.\n */\n\nimport { ITSTypeFunction } from '../generic';\n\nexport type ITSArrayListMaybeReadonly<T> = T[] | readonly T[];\n\nexport type ITSKeys = symbol | string | number;\n\nexport type ITSConstructorLike<T extends any = any> = new(...args: any) => T;\n\nexport type ITSValueOrArray<T> = T | T[];\n\nexport type ITSPropertyKey = string | symbol;\n\nexport type ITSAnyFunction = ITSTypeFunction<any>;\n\n"]}
1
+ {"version":3,"file":"base.js","sourceRoot":"","sources":["base.ts"],"names":[],"mappings":";AAAA;;GAEG","sourcesContent":["/**\n * Created by user on 2019/5/17.\n */\n\nimport { ITSTypeFunction } from '../generic';\n\nexport type ITSArrayListMaybeReadonly<T> = T[] | readonly T[];\n\nexport type ITSKeys = symbol | string | number;\n\nexport type ITSConstructorLike<T extends any = any> = new(...args: any) => T;\n\nexport type ITSValueOrArray<T> = T | T[];\n\nexport type ITSPropertyKey = string | symbol;\n\nexport type ITSAnyFunction = ITSTypeFunction<any>;\n\nexport type ITSBasicPrimitive = number | string | boolean;\n\nexport type ITSNullPrimitive = null | undefined;\n\n"]}
@@ -2,14 +2,18 @@
2
2
  * Created by user on 2019/5/17.
3
3
  */
4
4
  import Bluebird from 'bluebird';
5
- import { ITSUnpackedReturnType, ITSKeyOfRecordExtractToKey, ITSUnpackedPromiseLike } from '..';
5
+ import { ITSUnpackedReturnType, ITSKeyOfRecordExtractToKey, ITSUnpackedPromiseLike, ITSAnyFunction } from '..';
6
6
  export declare type IBluebird<T> = Bluebird<T>;
7
7
  export declare type ITSBluebird<T> = Bluebird<T>;
8
8
  export declare type ITSWrapFunctionBluebird<T extends (...args: any[]) => any> = (...args: Parameters<T>) => IBluebird<ITSUnpackedReturnType<T>>;
9
- export declare type ITSBluebirdPromisifyAll<T, K extends ITSKeyOfRecordExtractToKey<T, Function> = ITSKeyOfRecordExtractToKey<T, Function>> = Omit<T, K> & {
9
+ export declare type ITSBluebirdPromisifyAll<T extends {
10
+ [p: string | symbol]: ITSAnyFunction;
11
+ }, K extends ITSKeyOfRecordExtractToKey<T, Function> = ITSKeyOfRecordExtractToKey<T, Function>> = Omit<T, K> & {
10
12
  [P in K]: (...argv: Parameters<T[P]>) => IBluebird<ITSUnpackedPromiseLike<ReturnType<T[P]>>>;
11
13
  };
12
- export declare type ITSPromisifyAll<T, K extends ITSKeyOfRecordExtractToKey<T, Function> = ITSKeyOfRecordExtractToKey<T, Function>> = Omit<T, K> & {
14
+ export declare type ITSPromisifyAll<T extends {
15
+ [p: string | symbol]: ITSAnyFunction;
16
+ }, K extends ITSKeyOfRecordExtractToKey<T, Function> = ITSKeyOfRecordExtractToKey<T, Function>> = Omit<T, K> & {
13
17
  [P in K]: (...argv: Parameters<T[P]>) => Promise<ITSUnpackedPromiseLike<ReturnType<T[P]>>>;
14
18
  };
15
19
  export declare type ITSResultArrayToBluebirdInspection<T> = T extends [infer T1, infer T2, infer T3, infer T4, infer T5] ? [Bluebird.Inspection<T1>, Bluebird.Inspection<T2>, Bluebird.Inspection<T3>, Bluebird.Inspection<T4>, Bluebird.Inspection<T5>] : T extends [infer T1, infer T2, infer T3, infer T4] ? [Bluebird.Inspection<T1>, Bluebird.Inspection<T2>, Bluebird.Inspection<T3>, Bluebird.Inspection<T4>] : T extends [infer T1, infer T2, infer T3] ? [Bluebird.Inspection<T1>, Bluebird.Inspection<T2>, Bluebird.Inspection<T3>] : T extends [infer T1, infer T2] ? [Bluebird.Inspection<T1>, Bluebird.Inspection<T2>] : T extends [infer T1] ? [Bluebird.Inspection<T1>] : T extends (infer R)[] ? Bluebird.Inspection<R>[] : never;
@@ -1 +1 @@
1
- {"version":3,"file":"bluebird.js","sourceRoot":"","sources":["bluebird.ts"],"names":[],"mappings":";AAAA;;GAEG","sourcesContent":["/**\n * Created by user on 2019/5/17.\n */\n\nimport Bluebird from 'bluebird';\nimport { ITSUnpackedReturnType, ITSKeyOfRecordExtractToKey, ITSUnpackedPromiseLike } from '..';\n\nexport type IBluebird<T> = Bluebird<T>;\nexport type ITSBluebird<T> = Bluebird<T>;\n\nexport type ITSWrapFunctionBluebird<T extends (...args: any[]) => any> =\n\t(...args: Parameters<T>) => IBluebird<ITSUnpackedReturnType<T>>;\n\nexport type ITSBluebirdPromisifyAll<T, K extends ITSKeyOfRecordExtractToKey<T, Function> = ITSKeyOfRecordExtractToKey<T, Function>> = Omit<T, K> & {\n\t[P in K]: (...argv: Parameters<T[P]>) => IBluebird<ITSUnpackedPromiseLike<ReturnType<T[P]>>>\n}\n\nexport type ITSPromisifyAll<T, K extends ITSKeyOfRecordExtractToKey<T, Function> = ITSKeyOfRecordExtractToKey<T, Function>> = Omit<T, K> & {\n\t[P in K]: (...argv: Parameters<T[P]>) => Promise<ITSUnpackedPromiseLike<ReturnType<T[P]>>>\n}\n\nexport type ITSResultArrayToBluebirdInspection<T> = T extends [infer T1, infer T2, infer T3, infer T4, infer T5] ? [Bluebird.Inspection<T1>, Bluebird.Inspection<T2>, Bluebird.Inspection<T3>, Bluebird.Inspection<T4>, Bluebird.Inspection<T5>] : T extends [infer T1, infer T2, infer T3, infer T4] ? [Bluebird.Inspection<T1>, Bluebird.Inspection<T2>, Bluebird.Inspection<T3>, Bluebird.Inspection<T4>] : T extends [infer T1, infer T2, infer T3] ? [Bluebird.Inspection<T1>, Bluebird.Inspection<T2>, Bluebird.Inspection<T3>] : T extends [infer T1, infer T2] ? [Bluebird.Inspection<T1>, Bluebird.Inspection<T2>] : T extends [infer T1] ? [Bluebird.Inspection<T1>] : T extends (infer R)[] ? Bluebird.Inspection<R>[] : never;\n"]}
1
+ {"version":3,"file":"bluebird.js","sourceRoot":"","sources":["bluebird.ts"],"names":[],"mappings":";AAAA;;GAEG","sourcesContent":["/**\n * Created by user on 2019/5/17.\n */\n\nimport Bluebird from 'bluebird';\nimport { ITSUnpackedReturnType, ITSKeyOfRecordExtractToKey, ITSUnpackedPromiseLike, ITSAnyFunction } from '..';\n\nexport type IBluebird<T> = Bluebird<T>;\nexport type ITSBluebird<T> = Bluebird<T>;\n\nexport type ITSWrapFunctionBluebird<T extends (...args: any[]) => any> =\n\t(...args: Parameters<T>) => IBluebird<ITSUnpackedReturnType<T>>;\n\nexport type ITSBluebirdPromisifyAll<T extends {\n\t[p: string | symbol]: ITSAnyFunction\n}, K extends ITSKeyOfRecordExtractToKey<T, Function> = ITSKeyOfRecordExtractToKey<T, Function>> = Omit<T, K> & {\n\t[P in K]: (...argv: Parameters<T[P]>) => IBluebird<ITSUnpackedPromiseLike<ReturnType<T[P]>>>\n}\n\nexport type ITSPromisifyAll<T extends {\n\t[p: string | symbol]: ITSAnyFunction\n}, K extends ITSKeyOfRecordExtractToKey<T, Function> = ITSKeyOfRecordExtractToKey<T, Function>> = Omit<T, K> & {\n\t[P in K]: (...argv: Parameters<T[P]>) => Promise<ITSUnpackedPromiseLike<ReturnType<T[P]>>>\n}\n\nexport type ITSResultArrayToBluebirdInspection<T> = T extends [infer T1, infer T2, infer T3, infer T4, infer T5] ? [Bluebird.Inspection<T1>, Bluebird.Inspection<T2>, Bluebird.Inspection<T3>, Bluebird.Inspection<T4>, Bluebird.Inspection<T5>] : T extends [infer T1, infer T2, infer T3, infer T4] ? [Bluebird.Inspection<T1>, Bluebird.Inspection<T2>, Bluebird.Inspection<T3>, Bluebird.Inspection<T4>] : T extends [infer T1, infer T2, infer T3] ? [Bluebird.Inspection<T1>, Bluebird.Inspection<T2>, Bluebird.Inspection<T3>] : T extends [infer T1, infer T2] ? [Bluebird.Inspection<T1>, Bluebird.Inspection<T2>] : T extends [infer T1] ? [Bluebird.Inspection<T1>] : T extends (infer R)[] ? Bluebird.Inspection<R>[] : never;\n"]}
@@ -0,0 +1,6 @@
1
+ export declare type ITSPartialRecord<K extends keyof any, T> = {
2
+ [P in K]?: T;
3
+ };
4
+ export declare type ITSRequireRecord<K extends keyof any, T> = {
5
+ [P in K]-?: T;
6
+ };
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=partial.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"partial.js","sourceRoot":"","sources":["partial.ts"],"names":[],"mappings":"","sourcesContent":["\nexport type ITSPartialRecord<K extends keyof any, T> = {\n\t[P in K]?: T;\n};\n\nexport type ITSRequireRecord<K extends keyof any, T> = {\n\t[P in K]-?: T;\n};\n"]}
@@ -1,8 +1,8 @@
1
1
  /**
2
2
  * Created by user on 2019/6/11.
3
3
  */
4
- import { ITSKeyofSame, ITSKeyofDiff, ITSKeyofBothSame, ITSKeyofBothDiff } from '../helper/filter';
5
- import { ITSKeyOfRecordExcludeToKey, ITSKeyOfRecordExtractToKey } from '..';
4
+ import { ITSKeyofBothDiff, ITSKeyofBothSame, ITSKeyofDiff, ITSKeyofSame } from '../helper/filter';
5
+ export { ITSRequireRecord, ITSPartialRecord } from '../type/record/partial';
6
6
  /**
7
7
  * @deprecated
8
8
  */
@@ -85,11 +85,3 @@ export declare type ITSRequireAtLeastOne<T, Keys extends keyof T = keyof T> = Om
85
85
  export declare type ITSRequireOnlyOne<T, Keys extends keyof T = keyof T> = Omit<T, Keys> & {
86
86
  [K in Keys]-?: ITSRequiredPick<T, K> & Partial<Record<Exclude<Keys, K>, never>>;
87
87
  }[Keys];
88
- export declare type ITSPartialRecord<K extends keyof any, T> = {
89
- [P in K]?: T;
90
- };
91
- export declare type ITSRequireRecord<K extends keyof any, T> = {
92
- [P in K]-?: T;
93
- };
94
- export declare type ITSPickRecordType<Base, Type> = Pick<Base, ITSKeyOfRecordExtractToKey<Base, Type>>;
95
- export declare type ITSOmitRecordType<Base, Type> = Pick<Base, ITSKeyOfRecordExcludeToKey<Base, Type>>;
@@ -1 +1 @@
1
- {"version":3,"file":"record.js","sourceRoot":"","sources":["record.ts"],"names":[],"mappings":";AAAA;;GAEG","sourcesContent":["/**\n * Created by user on 2019/6/11.\n */\n\nimport { ITSKeyofSame, ITSKeyofDiff, ITSKeyofBothSame, ITSKeyofBothDiff } from '../helper/filter';\nimport { ITSKeyOfRecordExcludeToKey, ITSKeyOfRecordExtractToKey } from '..';\n\n/**\n * @deprecated\n */\nexport type ITSDiff<T extends keyof any, U extends keyof any> = (\n\t{ [P in T]: P }\n\t&\n\t{ [P in U]: never }\n\t&\n\t{ [x: string]: never }\n\t)[T];\n\nexport type ITSPickSame<T, U> = Pick<T, ITSKeyofSame<T, U>>;\nexport type ITSPickDiff<T, U> = Pick<T, ITSKeyofDiff<T, U>>;\n\n/**\n * 生成一個新類型 具有 T 與 U 當中同時存在的 KEY\n */\nexport type ITSPickBothSame<T, U> = Pick<T & U, ITSKeyofBothSame<T, U>>;\n/**\n * 生成一個新類型 不具有 T 與 U 當中同時存在的 KEY\n */\nexport type ITSPickBothDiff<T, U> = Pick<T & U, ITSKeyofBothDiff<T, U>>;\n\nexport type ITSPickBoth<T, U, K extends ITSKeyofBothSame<T, U> = ITSKeyofBothSame<T, U>> = Pick<T & U, K>;\n\n/**\n * @see https://stackoverflow.com/questions/49198713/override-the-properties-of-an-interface-in-typescript\n */\nexport type ITSPickMember<T, K extends keyof T> = T[K];\n\n/**\n * exclude all key in K at T\n * @deprecated\n */\nexport type ITSPickNot<T, K extends keyof T> = Omit<T, K>;\n\n/**\n * @see https://stackoverflow.com/questions/49198713/override-the-properties-of-an-interface-in-typescript\n *\n * @example\n * export interface A1 { s: string;}\n * export declare type A2 = ITSOverwrite<A1, { s: number; }>;\n * export declare let a2: A2;\n */\nexport type ITSOverwrite<T, U> = Omit<T, keyof U> & U;\n\n/**\n * @example\n * type Test1 = { id: number, code: string }\n * type Test2 = { id: string, code: number }\n * type Test3 = ITSMergeBoth<Test1, Test2>\n * export const x: Test3 = { id: \"bob\", code: \"bob\" }\n * @see https://github.com/microsoft/TypeScript/issues/35627\n */\nexport type ITSMergeBoth<T, U> = ITSPickBothDiff<T, U> & Pick<T | U, ITSKeyofBothSame<T, U>>;\n\n/**\n * pick K and mark as Required\n */\nexport type ITSRequiredPick<T, K extends keyof T = keyof T> = {\n\t[P in K]-?: T[P];\n};\n\n/**\n * pick K and mark as Partial\n */\nexport type ITSPartialPick<T, K extends keyof T = keyof T> = {\n\t[P in K]?: T[P];\n};\n\n/**\n * clone a type and mark all RK is Required, PK is Partial\n */\nexport type ITSPickExtra<T, RK extends keyof T, PK extends Exclude<keyof T, RK> = Exclude<keyof T, RK>> =\n\tITSRequiredPick<T, RK>\n\t& ITSPartialPick<T, PK>;\n\n/**\n * clone a type and mark all RK is Required, PK is Partial\n */\nexport type ITSPickExtra2<T, PK extends keyof T, RK extends Exclude<keyof T, PK> = Exclude<keyof T, PK>> =\n\tITSRequiredPick<T, RK>\n\t& ITSPartialPick<T, PK>;\n\nexport type ITSRequiredWith<T, K extends keyof T> = Omit<T, K> & ITSRequiredPick<T, K>;\nexport type ITSPartialWith<T, K extends keyof T> = Omit<T, K> & ITSPartialPick<T, K>;\n\n/**\n * https://stackoverflow.com/questions/40510611/typescript-interface-require-one-of-two-properties-to-exist\n */\nexport type ITSRequireAtLeastOne<T, Keys extends keyof T = keyof T> =\n\tOmit<T, Keys>\n\t& {\n\t[K in Keys]-?: ITSRequiredPick<T, K>\n\t& ITSPartialPick<T, Exclude<Keys, K>>\n}[Keys];\n\n/**\n * https://stackoverflow.com/questions/40510611/typescript-interface-require-one-of-two-properties-to-exist\n */\nexport type ITSRequireOnlyOne<T, Keys extends keyof T = keyof T> =\n\tOmit<T, Keys>\n\t& {\n\t[K in Keys]-?: ITSRequiredPick<T, K>\n\t& Partial<Record<Exclude<Keys, K>, never>>\n}[Keys];\n\nexport type ITSPartialRecord<K extends keyof any, T> = {\n\t[P in K]?: T;\n};\n\nexport type ITSRequireRecord<K extends keyof any, T> = {\n\t[P in K]-?: T;\n};\n\nexport type ITSPickRecordType<Base, Type> = Pick<Base, ITSKeyOfRecordExtractToKey<Base, Type>>;\n\nexport type ITSOmitRecordType<Base, Type> = Pick<Base, ITSKeyOfRecordExcludeToKey<Base, Type>>;\n"]}
1
+ {"version":3,"file":"record.js","sourceRoot":"","sources":["record.ts"],"names":[],"mappings":";AAAA;;GAEG","sourcesContent":["/**\n * Created by user on 2019/6/11.\n */\n\nimport { ITSKeyofBothDiff, ITSKeyofBothSame, ITSKeyofDiff, ITSKeyofSame } from '../helper/filter';\n\nexport { ITSRequireRecord, ITSPartialRecord } from '../type/record/partial';\n\n/**\n * @deprecated\n */\nexport type ITSDiff<T extends keyof any, U extends keyof any> = (\n\t{ [P in T]: P }\n\t&\n\t{ [P in U]: never }\n\t&\n\t{ [x: string]: never }\n\t)[T];\n\nexport type ITSPickSame<T, U> = Pick<T, ITSKeyofSame<T, U>>;\nexport type ITSPickDiff<T, U> = Pick<T, ITSKeyofDiff<T, U>>;\n\n/**\n * 生成一個新類型 具有 T 與 U 當中同時存在的 KEY\n */\nexport type ITSPickBothSame<T, U> = Pick<T & U, ITSKeyofBothSame<T, U>>;\n/**\n * 生成一個新類型 不具有 T 與 U 當中同時存在的 KEY\n */\nexport type ITSPickBothDiff<T, U> = Pick<T & U, ITSKeyofBothDiff<T, U>>;\n\nexport type ITSPickBoth<T, U, K extends ITSKeyofBothSame<T, U> = ITSKeyofBothSame<T, U>> = Pick<T & U, K>;\n\n/**\n * @see https://stackoverflow.com/questions/49198713/override-the-properties-of-an-interface-in-typescript\n */\nexport type ITSPickMember<T, K extends keyof T> = T[K];\n\n/**\n * exclude all key in K at T\n * @deprecated\n */\nexport type ITSPickNot<T, K extends keyof T> = Omit<T, K>;\n\n/**\n * @see https://stackoverflow.com/questions/49198713/override-the-properties-of-an-interface-in-typescript\n *\n * @example\n * export interface A1 { s: string;}\n * export declare type A2 = ITSOverwrite<A1, { s: number; }>;\n * export declare let a2: A2;\n */\nexport type ITSOverwrite<T, U> = Omit<T, keyof U> & U;\n\n/**\n * @example\n * type Test1 = { id: number, code: string }\n * type Test2 = { id: string, code: number }\n * type Test3 = ITSMergeBoth<Test1, Test2>\n * export const x: Test3 = { id: \"bob\", code: \"bob\" }\n * @see https://github.com/microsoft/TypeScript/issues/35627\n */\nexport type ITSMergeBoth<T, U> = ITSPickBothDiff<T, U> & Pick<T | U, ITSKeyofBothSame<T, U>>;\n\n/**\n * pick K and mark as Required\n */\nexport type ITSRequiredPick<T, K extends keyof T = keyof T> = {\n\t[P in K]-?: T[P];\n};\n\n/**\n * pick K and mark as Partial\n */\nexport type ITSPartialPick<T, K extends keyof T = keyof T> = {\n\t[P in K]?: T[P];\n};\n\n/**\n * clone a type and mark all RK is Required, PK is Partial\n */\nexport type ITSPickExtra<T, RK extends keyof T, PK extends Exclude<keyof T, RK> = Exclude<keyof T, RK>> =\n\tITSRequiredPick<T, RK>\n\t& ITSPartialPick<T, PK>;\n\n/**\n * clone a type and mark all RK is Required, PK is Partial\n */\nexport type ITSPickExtra2<T, PK extends keyof T, RK extends Exclude<keyof T, PK> = Exclude<keyof T, PK>> =\n\tITSRequiredPick<T, RK>\n\t& ITSPartialPick<T, PK>;\n\nexport type ITSRequiredWith<T, K extends keyof T> = Omit<T, K> & ITSRequiredPick<T, K>;\nexport type ITSPartialWith<T, K extends keyof T> = Omit<T, K> & ITSPartialPick<T, K>;\n\n/**\n * https://stackoverflow.com/questions/40510611/typescript-interface-require-one-of-two-properties-to-exist\n */\nexport type ITSRequireAtLeastOne<T, Keys extends keyof T = keyof T> =\n\tOmit<T, Keys>\n\t& {\n\t[K in Keys]-?: ITSRequiredPick<T, K>\n\t& ITSPartialPick<T, Exclude<Keys, K>>\n}[Keys];\n\n/**\n * https://stackoverflow.com/questions/40510611/typescript-interface-require-one-of-two-properties-to-exist\n */\nexport type ITSRequireOnlyOne<T, Keys extends keyof T = keyof T> =\n\tOmit<T, Keys>\n\t& {\n\t[K in Keys]-?: ITSRequiredPick<T, K>\n\t& Partial<Record<Exclude<Keys, K>, never>>\n}[Keys];\n\n"]}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ts-type",
3
- "version": "1.2.37",
3
+ "version": "2.0.1",
4
4
  "description": "add some typescript type and re-export some build-in typescript type",
5
5
  "keywords": [
6
6
  ".d.ts",
@@ -46,22 +46,23 @@
46
46
  "pretest": "yarn run build",
47
47
  "test": "yarn run ts:check",
48
48
  "build": "yarn run build-lib-toc",
49
- "build-lib-toc": "npx ts-node ./test/script/toc && yarn run build:toc",
49
+ "build-lib-toc": "ynpx ts-node ./test/script/toc && yarn run build:toc",
50
50
  "build:toc": "tsc -p ./ --isolatedModules --noStrictGenericChecks --skipLibCheck & echo build:toc",
51
- "preversion": "yarn run test",
51
+ "preversion": "yarn run test && yarn run postpublish:git:commit",
52
52
  "prepublishOnly": "echo prepublishOnly",
53
+ "postpublish:git:commit": "git commit -m \"build(release): publish\" ./lib/index.d.ts & echo postpublish:git:commit",
53
54
  "ncu": "npx yarn-tool ncu -u",
54
55
  "sort-package-json": "npx yarn-tool sort",
55
56
  "ts:check": "tsc --noEmit -p tsconfig.check.json"
56
57
  },
57
58
  "dependencies": {
58
- "tslib": "^2.3.0",
59
+ "tslib": "^2.3.1",
59
60
  "typedarray-dts": "^1.0.0"
60
61
  },
61
62
  "peerDependencies": {
62
63
  "@types/bluebird": "*",
63
64
  "@types/node": "*",
64
- "ts-toolbelt": "^8.0.7"
65
+ "ts-toolbelt": "^9.6.0"
65
66
  },
66
- "gitHead": "faf716fbdf1f61e4638db6c1bb7002efa6d924c6"
67
+ "gitHead": "a5d6d26efc9d81d74d4aeeeb99c6d0b5d50d5d10"
67
68
  }
@@ -1 +1 @@
1
- {"program":{"fileNames":["c:/users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.es5.d.ts","c:/users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.es2015.d.ts","c:/users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.es2016.d.ts","c:/users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.es2017.d.ts","c:/users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.es2018.d.ts","c:/users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.es2019.d.ts","c:/users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.dom.d.ts","c:/users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.dom.iterable.d.ts","c:/users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.webworker.importscripts.d.ts","c:/users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.scripthost.d.ts","c:/users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.es2015.core.d.ts","c:/users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.es2015.collection.d.ts","c:/users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.es2015.generator.d.ts","c:/users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.es2015.iterable.d.ts","c:/users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.es2015.promise.d.ts","c:/users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.es2015.proxy.d.ts","c:/users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.es2015.reflect.d.ts","c:/users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.es2015.symbol.d.ts","c:/users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","c:/users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.es2016.array.include.d.ts","c:/users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.es2017.object.d.ts","c:/users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","c:/users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.es2017.string.d.ts","c:/users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.es2017.intl.d.ts","c:/users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","c:/users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","c:/users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","c:/users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.es2018.intl.d.ts","c:/users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.es2018.promise.d.ts","c:/users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.es2018.regexp.d.ts","c:/users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.es2019.array.d.ts","c:/users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.es2019.object.d.ts","c:/users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.es2019.string.d.ts","c:/users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.es2019.symbol.d.ts","c:/users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.es2020.bigint.d.ts","c:/users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.esnext.intl.d.ts","c:/users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.es2019.full.d.ts","./lib/generic.ts","./lib/type/base.ts","./lib/helper/unpacked.ts","./lib/helper.ts","./lib/helper/filter.ts","./lib/helper/infer.ts","./lib/helper/intersection.ts","./lib/helper/typeof.ts","./lib/helper/key-value.ts","./lib/helper/overwrite.ts","./lib/helper/readonly.ts","./lib/helper/record.ts","./lib/helper/tuple.ts","./lib/internal/filter.ts","./lib/logic/any.ts","../../node_modules/@types/bluebird/index.d.ts","./lib/type/bluebird.ts","./lib/type/decorators.ts","./lib/type/promise.ts","./lib/type/proxy.ts","./lib/type/record.ts","./lib/index.d.ts","../../node_modules/typedarray-dts/src/signed-typed-array.d.ts","../../node_modules/typedarray-dts/src/unsigned-typed-array.d.ts","../../node_modules/typedarray-dts/src/typed-array.d.ts","../../node_modules/typedarray-dts/src/index.d.ts","./lib/_build-in.ts","./index.d.ts","./ts-toolbelt.d.ts","./test/spec/helper/intersection.ts","./test/spec/helper/tuple.ts","./test/spec/helper/record/partial.ts","./test/spec/helper/record/readonly-keys.ts","./test/spec/record/merge.ts","../../node_modules/@types/color-name/index.d.ts","../../node_modules/@types/node/globals.d.ts","../../node_modules/@types/node/assert.d.ts","../../node_modules/@types/node/async_hooks.d.ts","../../node_modules/@types/node/buffer.d.ts","../../node_modules/@types/node/child_process.d.ts","../../node_modules/@types/node/cluster.d.ts","../../node_modules/@types/node/console.d.ts","../../node_modules/@types/node/constants.d.ts","../../node_modules/@types/node/crypto.d.ts","../../node_modules/@types/node/dgram.d.ts","../../node_modules/@types/node/dns.d.ts","../../node_modules/@types/node/domain.d.ts","../../node_modules/@types/node/events.d.ts","../../node_modules/@types/node/fs.d.ts","../../node_modules/@types/node/http.d.ts","../../node_modules/@types/node/http2.d.ts","../../node_modules/@types/node/https.d.ts","../../node_modules/@types/node/inspector.d.ts","../../node_modules/@types/node/module.d.ts","../../node_modules/@types/node/net.d.ts","../../node_modules/@types/node/os.d.ts","../../node_modules/@types/node/path.d.ts","../../node_modules/@types/node/perf_hooks.d.ts","../../node_modules/@types/node/process.d.ts","../../node_modules/@types/node/punycode.d.ts","../../node_modules/@types/node/querystring.d.ts","../../node_modules/@types/node/readline.d.ts","../../node_modules/@types/node/repl.d.ts","../../node_modules/@types/node/stream.d.ts","../../node_modules/@types/node/string_decoder.d.ts","../../node_modules/@types/node/timers.d.ts","../../node_modules/@types/node/tls.d.ts","../../node_modules/@types/node/trace_events.d.ts","../../node_modules/@types/node/tty.d.ts","../../node_modules/@types/node/url.d.ts","../../node_modules/@types/node/util.d.ts","../../node_modules/@types/node/v8.d.ts","../../node_modules/@types/node/vm.d.ts","../../node_modules/@types/node/worker_threads.d.ts","../../node_modules/@types/node/zlib.d.ts","../../node_modules/@types/node/base.d.ts","../../node_modules/@types/node/ts3.2/util.d.ts","../../node_modules/@types/node/ts3.2/globals.d.ts","../../node_modules/@types/node/ts3.2/index.d.ts","../../node_modules/@types/fs-extra/index.d.ts","../../node_modules/@types/minimatch/index.d.ts","../../node_modules/@types/glob/index.d.ts","../../node_modules/@types/json-schema/index.d.ts","../../node_modules/@types/minimist/index.d.ts","../../node_modules/@types/normalize-package-data/index.d.ts","../../node_modules/@types/prettier/index.d.ts","../../node_modules/@types/semver/classes/semver.d.ts","../../node_modules/@types/semver/functions/parse.d.ts","../../node_modules/@types/semver/functions/valid.d.ts","../../node_modules/@types/semver/functions/clean.d.ts","../../node_modules/@types/semver/functions/inc.d.ts","../../node_modules/@types/semver/functions/diff.d.ts","../../node_modules/@types/semver/functions/major.d.ts","../../node_modules/@types/semver/functions/minor.d.ts","../../node_modules/@types/semver/functions/patch.d.ts","../../node_modules/@types/semver/functions/prerelease.d.ts","../../node_modules/@types/semver/functions/compare.d.ts","../../node_modules/@types/semver/functions/rcompare.d.ts","../../node_modules/@types/semver/functions/compare-loose.d.ts","../../node_modules/@types/semver/functions/compare-build.d.ts","../../node_modules/@types/semver/functions/sort.d.ts","../../node_modules/@types/semver/functions/rsort.d.ts","../../node_modules/@types/semver/functions/gt.d.ts","../../node_modules/@types/semver/functions/lt.d.ts","../../node_modules/@types/semver/functions/eq.d.ts","../../node_modules/@types/semver/functions/neq.d.ts","../../node_modules/@types/semver/functions/gte.d.ts","../../node_modules/@types/semver/functions/lte.d.ts","../../node_modules/@types/semver/functions/cmp.d.ts","../../node_modules/@types/semver/functions/coerce.d.ts","../../node_modules/@types/semver/classes/comparator.d.ts","../../node_modules/@types/semver/classes/range.d.ts","../../node_modules/@types/semver/functions/satisfies.d.ts","../../node_modules/@types/semver/ranges/max-satisfying.d.ts","../../node_modules/@types/semver/ranges/min-satisfying.d.ts","../../node_modules/@types/semver/ranges/to-comparators.d.ts","../../node_modules/@types/semver/ranges/min-version.d.ts","../../node_modules/@types/semver/ranges/valid.d.ts","../../node_modules/@types/semver/ranges/outside.d.ts","../../node_modules/@types/semver/ranges/gtr.d.ts","../../node_modules/@types/semver/ranges/ltr.d.ts","../../node_modules/@types/semver/ranges/intersects.d.ts","../../node_modules/@types/semver/ranges/simplify.d.ts","../../node_modules/@types/semver/ranges/subset.d.ts","../../node_modules/@types/semver/internals/identifiers.d.ts","../../node_modules/@types/semver/index.d.ts","./test/temp/t.ts"],"fileInfos":[{"version":"aa9fb4c70f369237c2f45f9d969c9a59e0eae9a192962eb48581fe864aa609db","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84",{"version":"e9dfaf641bd94c4f5d09f01044ab5b0a2b6817daf3b6468cfdb8c3183cc06c7b","affectsGlobalScope":true},{"version":"4a4b94551e714ac6b524da804ddbdb8dd7eef9c57da73eaee4c01ceae5125cc3","affectsGlobalScope":true},{"version":"7fac8cb5fc820bc2a59ae11ef1c5b38d3832c6d0dfaec5acdb5569137d09a481","affectsGlobalScope":true},{"version":"097a57355ded99c68e6df1b738990448e0bf170e606707df5a7c0481ff2427cd","affectsGlobalScope":true},{"version":"51b8b27c21c066bf877646e320bf6a722b80d1ade65e686923cd9d4494aef1ca","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"2c8c5ee58f30e7c944e04ab1fb5506fdbb4dd507c9efa6972cf4b91cec90c503","affectsGlobalScope":true},{"version":"2bb4b3927299434052b37851a47bf5c39764f2ba88a888a107b32262e9292b7c","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"62d80405c46c3f4c527ee657ae9d43fda65a0bf582292429aea1e69144a522a6","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"df9c8a72ca8b0ed62f5470b41208a0587f0f73f0a7db28e5a1272cf92537518e","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"93544ca2f26a48716c1b6c5091842cad63129daac422dfa4bc52460465f22bb1","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"1b3fe904465430e030c93239a348f05e1be80640d91f2f004c3512c2c2c89f34","affectsGlobalScope":true},{"version":"4632665b87204bb1caa8b44d165bce0c50dfab177df5b561b345a567cabacf9a","affectsGlobalScope":true},"1f03b495671c3a1bd24510f38b8947f0991dfd6bf0278c68eca14af15b306e1f","f44c7e8edf452ef8eebea847c4a72f92f5a1afe341d45411ded867513d69011d","50b15ab26f5b7fac85ee59357fb51e787c63c95b31b78a16ed679798b48c663a","bb0e4b340003613a761020eeaeb2b427d19e830dbacfe94321087fd829f6b78c","9175e6783741471e695e9514a70b23d3cf083a60cfab803f24db898e772d1ca8",{"version":"c973fc8a0db3d7b52ae3a1015e52b3ee59d6314b15d0cb03a8e1227b3ed4a93e","signature":"c433c92eeced28bfa98ac523d1870339f6cb81123e9b89dc766c7a47f38d8ed8"},"2bd1aeba3c6a7f6c873f5633a7f21a4f85b5c691cf40ab7d8a91de9b7255e109","938119e25d271de4fcf8be0583b4205ee279839ddc9b870206dee44bc9df2d29","30a0a331dc5ca5c3d34a3f3b6bbd2e7badc62c1effe393650af1d78afcf31c76","17dec98c15b12786d26552f0b4eed667d1850a9f169a6a955974a616f86c7839","29e2fa65c45b57b8be7918cb4085ea14a11f50cab9f2d15f634616e19baaf5b1","4cb8ecd4c95174c75c85ff85de36ca89205d0d05cb423bbc0edfa51071558db9",{"version":"bcfe51d2b2c5bd5751537f76cc937669a46a58e65da00114ad7c368711d066e2","signature":"31b1ec4eec6959326c3e4ad45c8b49ef494d1dbc25498d9d7c4cac16ccdf688f"},"ade25ac7b51310d64d004d5811af33603a8ed53812803dd356624a2075e0be2f",{"version":"77851c3820f174bbd2aef16fb0c393783ee9468a360756db96c8646a6c9763d9","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},"63199d76f6cc769b242566bca25e6b7300d1c9c00569f1ad675eba6b74e97040","1a6100f908d642fe1c74d1354b0e12ee647655b8d355159a1bb4c62ae874ccea",{"version":"12dd0bf46717f4d609922d6f6272e9207b07bccbfc6ebf6956271f23f3bde7ea","signature":"bfb0f4ccc3176a6a4a5ff809aca77f242d5cd4210c123b9b1127859f71cb1928"},"0bc03e521b73792d4512976dbddd8a750ddce9b06b13cf2c38685c78b97fdcc0","c8fbcf60d81581b50851f6ab8b59bd365916fdd44a0620293d048c79097f63d7","8f752c50cd5bb26347ce6e53d2ed502494fdfc734aab266cb739dbec6f516b42",{"version":"0db27daed1addc9172d5b4386897cf1a261b4d11bffc712b366008e838380b7d","signature":"589c0cda6cec41646dcfea350cca434261e0c8e55be5d611340d7b570fcc2a49"},"66df25740434db3916063b63f26f0639bb9e06ee1e6fb5c2f0632a9dffc3ea80","427aa4f679d92576e6dd9bafa5d32499860a376488e5f89ff307a583cde91544","9e23012a1449d07a7b6815183956ec86465514564937300ea2dd74d459c957fa","4a6e0a7021d82e63674b86895c559efddcb5ff7a41131a8bb6495f312426106f","a0a44b44d4ce9cef5f286238d1cd72d484087526fa7c5dd5a16b4b801e341870","1b60380d3838ec34bef4cc2aa673168cb09deb71d57c1ae54403443b85dcea70","081f763ebd04dca85c09aa8f64213c9d07826ce17943a78e0edc2d5986872a63","285ab2f632e7b88424b1cb1e928441a000fe5efd0acfd2a7c2bbd4435b34e784","5e9600683290011716d2b6ef31467427c506ae498bbbb4e60c4c68afe804e81d","eae7c3484c420b0386a118a393b16ce02e5a164e79add8f844f895bc3bc56475",{"version":"45ad8bee545911545efb77a9da58f0895973609312b670189ba06b3164a20e8e","signature":"37e324ec0f14d39596259eb0260c273bf9c2bf341919fe00211847c7c5903484"},{"version":"1210d3ee55776b0f56af1f98060c8dd3872b267d27b09fac68c0703264bc457f","signature":"ad35423efdcb0ab13d7fdc325f37bfb1da821137520e76679e6868e926372054"},{"version":"04b3a7ea02ec41f057cf15c6a0b9b9d89c4b5592a5ad6945b4f96d744b78ed11","signature":"2b69c896c6ef36b50556fb1650edd712cb07ab59a821fb8c261ea078dc56ea37"},"f0cb4b3ab88193e3e51e9e2622e4c375955003f1f81239d72c5b7a95415dad3e",{"version":"3af134c0480536f901a30692d216bd29712a3869fe38a7be066ea1eef34a8561","affectsGlobalScope":true},"58a52f282f1dad18179023804c1f3a7536bf875748a0a314abd43f60fd5b244f","138476cfdccbb9e2c7e06602bc216af843a56c4f3469a79106bc660ba94bd66a","fe892fea1e75a442fffb4a604d7eeb451e858787a9f2f01c4e83bf12a3b5048d","c5a3c14cb11afb48d405562e6843145caa67c60be9738f408cd7977ce30a0b00","ce629710e5e58724902b753212e97861fd73e2aa09f5d88cb6d55dc763cf8c8a","525c8fc510d9632d2a0a9de2d41c3ac1cdd79ff44d3b45c6d81cacabb683528d","b952021e804dcd9cb5e5552e1ec8bf9f479b61e20da5641e2a542fe77db9a598","a15466cfe77b4f8bcd936634d3d2828ee340819c3f136d31f87d6084e86994d0","b6c6861bccf209a98eeddb99bdb7bd987fb29fc52130d5d9fd2f79d3607a0a7a","896cd7d58e9d832392a6e374a8f8b64f142089b4d2678a2c90fd8d1d49128677","d5b7c8819ce1bd31a45f7675309e145ec28e3aa1b60a8e0637fd0e8916255baa","cff7f1ff41519a28adfedb85b9d91325e13d7993bebcfd0dd9ce30c3ed1240bb","10c5b29dccf29ea7f9aea324ab09b0e2237d6506bd8e28538963b28855819616","cc4cd9d8af7f5689b5df3c91d0fc287fafbd89e6e305183da28a6877a8aa08a8","28fdca6c7a3d5dd62c738461051ef345b50d167efab39dceb2fcc9a079db1b07","dacbe08610729f6343ea9880ea8e737c6d7a6efa4a318d8f6acaf85db4aceed6","7f71142177d3c98370b31751e3d320c9743ed28eee215acb88d8e0d2a31e321e","03394bf8deb8781b490ae9266a843fbdf00647947d79e25fcbf1d89a9e9c8a66","cc5fac2b9e45a6670b96fd32cb42c97e0d4a7b2ee12c87963c6fe0f55fa84f50","1a6016bd905855b2b45881e9edbd7ab8c7175f8bcbb711ff06989c4bcdc75486","5fb30076f0e0e5744db8993648bfb67aadd895f439edad5cce039127a87a8a36","27ef4001526ee9d8afa57687a60bb3b59c52b32d29db0a2260094ab64726164f","3a8848a9c307429b861402cc69bc472ffe0c05b86474fc158723169161e16389","30ec6f9c683b988c3cfaa0c4690692049c4e7ed7dc6f6e94f56194c06b86f5e1","b610b39b7d42b8e8359875ce77c3149d657bbaa6c9058beb655af805efb581b3","94cf93922adcc9cb4acf11d8d71641af728de919a50ae55d8e83159afea1a42c","65dbe15ed8a8ed5d4707a63868178dc38111cfc06de28a2e50713ca017a9c157","15087156b728a1bdf46de0e1299f904c6a658af37f80851f6fe76fb21bb99b65","17e157df6125098a1a34eb4d201ee4ac03bbe97e471ab5627bb2c40fce555948","b40652bf8ce4a18133b31349086523b219724dca8df3448c1a0742528e7ad5b9","8fd6756e8a6fac64089e19e4fbe822bcfafa62f79b237172288eaa1379e84083","978aecd2e6bc2ac094e9a35eda98ff8586713857b3655e7c98ca5ed8f7d50662","0fd8dac24f12d9fd1fcc275200dd1b6771072f20331a07b18f7dbcbe20f7d3f4","1e3da92862604b1f7a32265169f9aa712c4567742d42597704e04ae3e07019e7","20e55abae3dd750a85fda7c4d140670ada679c3d5b640de5e4f3eaafcee18a0d","6ad2dd29dbf3aea031062298e9978d4b2a1fadd0997eb9d8caaf95aaa89e7033","f98df5ec124f441b465332271d0b083aeec815cd3c92d9249b9739e6318477a9","16de20ae20cd1d948409a56b55832f3d416c66c8cb44bb8475e1e9db14d8e402","f91189e04264b0e41ee96ff96661c3871e739b90156df2f2288da7a81019dcd9","6622f76993bdfeaacb947ba7c4cf26f2e5c5194194d02d792c3cba4174cd8fce","4f54f0a9dd3b644c99ec32b32f8804d5978bc854799b228ae9c467bf3c84c64c",{"version":"ce6b191c382ee19f23678b8c364484627bcf424e8f408357a2f5530fb8d52a45","affectsGlobalScope":true},"765fc34423b93c2ab763670d8d11d99e5f47387c13c161d6f1640dd6d91b7d1c","d5c03e5866400953db3ef99447cc29bc3bac083171e128fd87a25c09defd2503","1d1e6bd176eee5970968423d7e215bfd66828b6db8d54d17afec05a831322633","393137c76bd922ba70a2f8bf1ade4f59a16171a02fb25918c168d48875b0cfb0","b2be568d8ce95fcb26eebd04c035d94825655fdf689bf67d799f5ff8cbbb1024","3602dfff3072caea42f23a9b63fb34a7b0c95a62b93ce2add5fe6b159447845e","c9ad058b2cc9ce6dc2ed92960d6d009e8c04bef46d3f5312283debca6869f613","c4efa4df1372e991aa44b70b8d87b48865d94ecd26e76025854f2273df155253","d9e55d93aa33fad61bd5c63800972d00ba8879ec5d29f6f3bce67d16d86abc33","2ac9c8332c5f8510b8bdd571f8271e0f39b0577714d5e95c1e79a12b2616f069","42c21aa963e7b86fa00801d96e88b36803188018d5ad91db2a9101bccd40b3ff","d31eb848cdebb4c55b4893b335a7c0cca95ad66dee13cbb7d0893810c0a9c301","77c1d91a129ba60b8c405f9f539e42df834afb174fe0785f89d92a2c7c16b77a","c544d81603149987796b24cca297c965db427b84b2580fb27e52fb37ddc1f470","906c751ef5822ec0dadcea2f0e9db64a33fb4ee926cc9f7efa38afe5d5371b2a","5387c049e9702f2d2d7ece1a74836a14b47fbebe9bbeb19f94c580a37c855351","c68391fb9efad5d99ff332c65b1606248c4e4a9f1dd9a087204242b56c7126d6","758e82e32536b66a139e34bb7e067dd860b563070f9746a0ae5cd802588f4def","e8b02b879754d85f48489294f99147aeccc352c760d95a6fe2b6e49cd400b2fe","9f6908ab3d8a86c68b86e38578afc7095114e66b2fc36a2a96e9252aac3998e0","0eedb2344442b143ddcd788f87096961cd8572b64f10b4afc3356aa0460171c6","9eb2875a1e4c583066af7d6194ea8162191b2756e5d87ccb3c562fdf74d06869","c68baff4d8ba346130e9753cefe2e487a16731bf17e05fdacc81e8c9a26aae9d","2cd15528d8bb5d0453aa339b4b52e0696e8b07e790c153831c642c3dea5ac8af","479d622e66283ffa9883fbc33e441f7fc928b2277ff30aacbec7b7761b4e9579","ade307876dc5ca267ca308d09e737b611505e015c535863f22420a11fffc1c54","f8cdefa3e0dee639eccbe9794b46f90291e5fd3989fcba60d2f08fde56179fb9","86c5a62f99aac7053976e317dbe9acb2eaf903aaf3d2e5bb1cafe5c2df7b37a8","2b300954ce01a8343866f737656e13243e86e5baef51bd0631b21dcef1f6e954","a2d409a9ffd872d6b9d78ead00baa116bbc73cfa959fce9a2f29d3227876b2a1","b288936f560cd71f4a6002953290de9ff8dfbfbf37f5a9391be5c83322324898","61178a781ef82e0ff54f9430397e71e8f365fc1e3725e0e5346f2de7b0d50dfa","5349dc09f88a35d52dc0bf24c44ebfd10dcb13e052d79133a56e1ac127162a4d","6eef5113135a0f2bbac8259909a5bbb7666bcde022c28f4ab95145623cbe1f72","058b8dd97b7c67b6bf33e7bda7b1e247b019b675d4b6449d14ac002091a8b4f8","89c8a7b88c378663a8124664f2d9b8c2887e186b55aa066edf6d67177ca1aa04","5a30ba65ad753eb2ef65355dbb3011b28b192cb9df2ef0b5f595b51ca7faf353","5192f9a6469f849e0863616b668fde54bcd6704394b4bfbd115691865f66d761","f41d30972724714763a2698ae949fbc463afb203b5fa7c4ad7e4de0871129a17","0123340327efb174818f4b78bf6a9b12f8470754e6afac9e4d32a2ad27521f7b","9795e0a3a45d5b6f1a791ee54b7c8b58bc931e8900966cea2dff9c5bae56073b","5890be29879d02424b7654f40592915189034948f7a18c5ad121c006d4e92811","0ab49086f10c75a1cb3b18bffe799dae021774146d8a2d5a4bb42dda67b64f9b","81c77839e152b8f715ec67b0a8b910bcc2d6cf916794c3519f8798c40efd12ac","a868a534ba1c2ca9060b8a13b0ffbbbf78b4be7b0ff80d8c75b02773f7192c29","464843c00fb3dd4735b28255c5c9fe713f16b8e47a3db09ba1647687440f7aef","34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","03d2e70c34640b553ed580286eb234835695ea1e473d837a4ced672648d453cd"],"options":{"allowSyntheticDefaultImports":true,"allowUmdGlobalAccess":false,"declaration":false,"emitDecoratorMetadata":true,"esModuleInterop":true,"experimentalDecorators":true,"inlineSourceMap":false,"inlineSources":true,"jsx":1,"module":1,"newLine":1,"noErrorTruncation":true,"noImplicitThis":true,"preserveConstEnums":true,"removeComments":false,"skipLibCheck":true,"sourceMap":true,"strict":false,"strictNullChecks":false,"target":6},"fileIdsList":[[108,114],[86,108,114,116],[85,108,114,116,118],[73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,114],[85,92,101,108,114],[77,85,92,108,114],[101,108,114],[83,85,92,108,114],[85,108,114],[85,101,107,108,114],[85,92,101,107,108,114],[85,86,87,92,101,104,107,108,114],[85,87,104,107,108,114],[83,85,101,108,114],[75,108,114],[85,101,108,114],[99,108,110,114],[81,83,92,101,108,114],[73,108,114],[108,113,114,115],[108],[92,108,114],[98,108,114],[114],[85,101,108,110,114],[108,114,124,163],[108,114,124,148,163],[108,114,163],[108,114,124],[108,114,124,149,163],[108,114,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162],[108,114,149,163],[60,61,62,108,114],[60,61,108,114],[59,63,64,65,108,114],[39,40,108,114],[59,108,114],[38,45,108,114],[40,108,114],[42,46,108,114],[38,108,114],[38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,54,55,56,57,58,108,114],[42,108,114],[53,59,108,114],[42,59,108,114],[44,108,114],[49,108,114],[50,108,114],[59],[42,46],[53,59],[42,59],[49]],"referencedMap":[[7,1],[8,1],[12,1],[11,1],[2,1],[13,1],[14,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[3,1],[4,1],[24,1],[21,1],[22,1],[23,1],[25,1],[26,1],[27,1],[5,1],[28,1],[29,1],[30,1],[31,1],[6,1],[37,1],[32,1],[33,1],[34,1],[35,1],[1,1],[36,1],[10,1],[9,1],[53,1],[72,1],[117,2],[119,3],[120,1],[118,1],[121,1],[74,1],[75,1],[113,4],[76,1],[77,5],[78,6],[79,1],[80,1],[81,7],[82,8],[83,1],[84,9],[85,1],[86,10],[73,1],[87,11],[88,12],[89,13],[90,9],[91,1],[92,14],[93,1],[94,1],[95,15],[96,1],[97,1],[98,1],[99,16],[100,17],[101,9],[102,1],[103,1],[104,18],[105,1],[115,19],[116,20],[114,21],[106,22],[107,23],[108,24],[109,7],[110,1],[111,25],[112,7],[122,1],[123,1],[148,26],[149,27],[124,28],[127,28],[146,26],[147,26],[137,29],[136,29],[134,26],[129,26],[142,26],[140,26],[144,26],[128,26],[141,26],[145,26],[130,26],[131,26],[143,26],[125,26],[132,26],[133,26],[135,26],[139,26],[150,30],[138,26],[126,26],[163,31],[162,1],[157,30],[159,32],[158,30],[151,30],[152,30],[154,30],[156,30],[160,32],[161,32],[153,32],[155,32],[63,33],[60,1],[62,34],[61,1],[65,35],[64,1],[38,1],[41,36],[42,37],[43,1],[44,1],[46,38],[47,1],[48,39],[49,40],[50,1],[45,1],[40,41],[59,42],[51,43],[52,1],[39,41],[54,44],[55,1],[56,1],[57,1],[58,45],[67,46],[69,37],[70,47],[68,48],[71,37],[66,1]],"exportedModulesMap":[[7,1],[8,1],[12,1],[11,1],[2,1],[13,1],[14,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[3,1],[4,1],[24,1],[21,1],[22,1],[23,1],[25,1],[26,1],[27,1],[5,1],[28,1],[29,1],[30,1],[31,1],[6,1],[37,1],[32,1],[33,1],[34,1],[35,1],[1,1],[36,1],[10,1],[9,1],[53,1],[72,1],[117,2],[119,3],[120,1],[118,1],[121,1],[74,1],[75,1],[113,4],[76,1],[77,5],[78,6],[79,1],[80,1],[81,7],[82,8],[83,1],[84,9],[85,1],[86,10],[73,1],[87,11],[88,12],[89,13],[90,9],[91,1],[92,14],[93,1],[94,1],[95,15],[96,1],[97,1],[98,1],[99,16],[100,17],[101,9],[102,1],[103,1],[104,18],[105,1],[115,19],[116,20],[114,21],[106,22],[107,23],[108,24],[109,7],[110,1],[111,25],[112,7],[122,1],[123,1],[148,26],[149,27],[124,28],[127,28],[146,26],[147,26],[137,29],[136,29],[134,26],[129,26],[142,26],[140,26],[144,26],[128,26],[141,26],[145,26],[130,26],[131,26],[143,26],[125,26],[132,26],[133,26],[135,26],[139,26],[150,30],[138,26],[126,26],[163,31],[162,1],[157,30],[159,32],[158,30],[151,30],[152,30],[154,30],[156,30],[160,32],[161,32],[153,32],[155,32],[63,33],[60,1],[62,34],[61,1],[65,35],[64,1],[38,1],[41,36],[42,49],[43,1],[44,1],[46,38],[47,1],[48,39],[49,50],[50,1],[45,1],[40,41],[59,42],[52,1],[39,41],[54,51],[55,1],[56,1],[57,1],[58,52],[67,46],[69,49],[70,53],[68,48],[71,49],[66,1]],"semanticDiagnosticsPerFile":[7,8,12,11,2,13,14,15,16,17,18,19,20,3,4,24,21,22,23,25,26,27,5,28,29,30,31,6,37,32,33,34,35,1,36,10,9,53,72,117,119,120,118,121,74,75,113,76,77,78,79,80,81,82,83,84,85,86,73,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,115,116,114,106,107,108,109,110,111,112,122,123,148,149,124,127,146,147,137,136,134,129,142,140,144,128,141,145,130,131,143,125,132,133,135,139,150,138,126,163,162,157,159,158,151,152,154,156,160,161,153,155,63,60,62,61,65,64,38,41,42,43,44,46,47,48,49,50,45,40,59,51,52,39,54,55,56,57,58,67,69,70,68,71,66],"affectedFilesPendingEmit":[[7,1],[8,1],[12,1],[11,1],[2,1],[13,1],[14,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[3,1],[4,1],[24,1],[21,1],[22,1],[23,1],[25,1],[26,1],[27,1],[5,1],[28,1],[29,1],[30,1],[31,1],[6,1],[37,1],[32,1],[33,1],[34,1],[35,1],[1,1],[36,1],[10,1],[9,1],[53,1],[72,1],[117,1],[119,1],[120,1],[118,1],[121,1],[74,1],[75,1],[113,1],[76,1],[77,1],[78,1],[79,1],[80,1],[81,1],[82,1],[83,1],[84,1],[85,1],[86,1],[73,1],[87,1],[88,1],[89,1],[90,1],[91,1],[92,1],[93,1],[94,1],[95,1],[96,1],[97,1],[98,1],[99,1],[100,1],[101,1],[102,1],[103,1],[104,1],[105,1],[115,1],[116,1],[114,1],[106,1],[107,1],[108,1],[109,1],[110,1],[111,1],[112,1],[122,1],[123,1],[148,1],[149,1],[124,1],[127,1],[146,1],[147,1],[137,1],[136,1],[134,1],[129,1],[142,1],[140,1],[144,1],[128,1],[141,1],[145,1],[130,1],[131,1],[143,1],[125,1],[132,1],[133,1],[135,1],[139,1],[150,1],[138,1],[126,1],[163,1],[162,1],[157,1],[159,1],[158,1],[151,1],[152,1],[154,1],[156,1],[160,1],[161,1],[153,1],[155,1],[63,1],[60,1],[62,1],[61,1],[65,1],[64,1],[38,1],[41,1],[42,1],[43,1],[44,1],[46,1],[47,1],[48,1],[49,1],[50,1],[45,1],[40,1],[59,1],[51,1],[52,1],[39,1],[54,1],[55,1],[56,1],[57,1],[58,1],[67,1],[69,1],[70,1],[68,1],[71,1],[164,1],[66,1]]},"version":"4.4.0-dev.20210715"}
1
+ {"program":{"fileNames":["../../node_modules/@tsd/typescript/typescript/lib/lib.es5.d.ts","../../node_modules/@tsd/typescript/typescript/lib/lib.es2015.d.ts","../../node_modules/@tsd/typescript/typescript/lib/lib.es2016.d.ts","../../node_modules/@tsd/typescript/typescript/lib/lib.es2017.d.ts","../../node_modules/@tsd/typescript/typescript/lib/lib.es2018.d.ts","../../node_modules/@tsd/typescript/typescript/lib/lib.es2019.d.ts","../../node_modules/@tsd/typescript/typescript/lib/lib.es2020.d.ts","../../node_modules/@tsd/typescript/typescript/lib/lib.dom.d.ts","../../node_modules/@tsd/typescript/typescript/lib/lib.dom.iterable.d.ts","../../node_modules/@tsd/typescript/typescript/lib/lib.webworker.importscripts.d.ts","../../node_modules/@tsd/typescript/typescript/lib/lib.scripthost.d.ts","../../node_modules/@tsd/typescript/typescript/lib/lib.es2015.core.d.ts","../../node_modules/@tsd/typescript/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/@tsd/typescript/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/@tsd/typescript/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/@tsd/typescript/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/@tsd/typescript/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/@tsd/typescript/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/@tsd/typescript/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/@tsd/typescript/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/@tsd/typescript/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/@tsd/typescript/typescript/lib/lib.es2017.object.d.ts","../../node_modules/@tsd/typescript/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/@tsd/typescript/typescript/lib/lib.es2017.string.d.ts","../../node_modules/@tsd/typescript/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/@tsd/typescript/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/@tsd/typescript/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/@tsd/typescript/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/@tsd/typescript/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/@tsd/typescript/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/@tsd/typescript/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/@tsd/typescript/typescript/lib/lib.es2019.array.d.ts","../../node_modules/@tsd/typescript/typescript/lib/lib.es2019.object.d.ts","../../node_modules/@tsd/typescript/typescript/lib/lib.es2019.string.d.ts","../../node_modules/@tsd/typescript/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/@tsd/typescript/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/@tsd/typescript/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/@tsd/typescript/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/@tsd/typescript/typescript/lib/lib.es2020.string.d.ts","../../node_modules/@tsd/typescript/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/@tsd/typescript/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/@tsd/typescript/typescript/lib/lib.esnext.intl.d.ts","../../node_modules/@tsd/typescript/typescript/lib/lib.es2019.full.d.ts","./lib/generic.ts","./lib/type/base.ts","./lib/helper/unpacked.ts","./lib/helper.ts","./lib/helper/filter.ts","./lib/helper/infer.ts","./lib/helper/intersection.ts","./lib/helper/typeof.ts","./lib/helper/key-value.ts","./lib/helper/string.ts","./lib/helper/number.ts","./lib/helper/overwrite.ts","./lib/helper/readonly.ts","./lib/helper/record/partial.ts","./lib/helper/record.ts","./lib/helper/record/pick-type.ts","./lib/helper/record/member.ts","./lib/helper/tuple.ts","./lib/internal/filter.ts","./lib/internal/logic/string-literal.ts","./lib/logic/any.ts","../../node_modules/@types/bluebird/index.d.ts","./lib/type/bluebird.ts","./lib/type/decorators.ts","./lib/type/promise.ts","./lib/type/proxy.ts","./lib/type/record/partial.ts","./lib/type/record.ts","./lib/index.d.ts","../../node_modules/typedarray-dts/src/signed-typed-array.d.ts","../../node_modules/typedarray-dts/src/unsigned-typed-array.d.ts","../../node_modules/typedarray-dts/src/typed-array.d.ts","../../node_modules/typedarray-dts/src/index.d.ts","./lib/_build-in.ts","./index.d.ts","./ts-toolbelt.d.ts","./test/spec/helper/intersection.ts","./test/spec/helper/tuple.ts","./test/spec/helper/record/partial.ts","./test/spec/helper/record/readonly-keys.ts","./test/spec/record/merge.ts","../../node_modules/@types/eslint/helpers.d.ts","../../node_modules/@types/eslint/lib/rules/index.d.ts","../../node_modules/@types/json-schema/index.d.ts","../../node_modules/@types/estree/index.d.ts","../../node_modules/@types/eslint/index.d.ts","../../node_modules/@types/node/assert.d.ts","../../node_modules/@types/node/assert/strict.d.ts","../../node_modules/@types/node/globals.d.ts","../../node_modules/@types/node/async_hooks.d.ts","../../node_modules/@types/node/buffer.d.ts","../../node_modules/@types/node/child_process.d.ts","../../node_modules/@types/node/cluster.d.ts","../../node_modules/@types/node/console.d.ts","../../node_modules/@types/node/constants.d.ts","../../node_modules/@types/node/crypto.d.ts","../../node_modules/@types/node/dgram.d.ts","../../node_modules/@types/node/diagnostics_channel.d.ts","../../node_modules/@types/node/dns.d.ts","../../node_modules/@types/node/dns/promises.d.ts","../../node_modules/@types/node/domain.d.ts","../../node_modules/@types/node/events.d.ts","../../node_modules/@types/node/fs.d.ts","../../node_modules/@types/node/fs/promises.d.ts","../../node_modules/@types/node/http.d.ts","../../node_modules/@types/node/http2.d.ts","../../node_modules/@types/node/https.d.ts","../../node_modules/@types/node/inspector.d.ts","../../node_modules/@types/node/module.d.ts","../../node_modules/@types/node/net.d.ts","../../node_modules/@types/node/os.d.ts","../../node_modules/@types/node/path.d.ts","../../node_modules/@types/node/perf_hooks.d.ts","../../node_modules/@types/node/process.d.ts","../../node_modules/@types/node/punycode.d.ts","../../node_modules/@types/node/querystring.d.ts","../../node_modules/@types/node/readline.d.ts","../../node_modules/@types/node/repl.d.ts","../../node_modules/@types/node/stream.d.ts","../../node_modules/@types/node/stream/promises.d.ts","../../node_modules/@types/node/stream/consumers.d.ts","../../node_modules/@types/node/stream/web.d.ts","../../node_modules/@types/node/string_decoder.d.ts","../../node_modules/@types/node/timers.d.ts","../../node_modules/@types/node/timers/promises.d.ts","../../node_modules/@types/node/tls.d.ts","../../node_modules/@types/node/trace_events.d.ts","../../node_modules/@types/node/tty.d.ts","../../node_modules/@types/node/url.d.ts","../../node_modules/@types/node/util.d.ts","../../node_modules/@types/node/v8.d.ts","../../node_modules/@types/node/vm.d.ts","../../node_modules/@types/node/wasi.d.ts","../../node_modules/@types/node/worker_threads.d.ts","../../node_modules/@types/node/zlib.d.ts","../../node_modules/@types/node/globals.global.d.ts","../../node_modules/@types/node/index.d.ts","../../node_modules/@types/fs-extra/index.d.ts","../../node_modules/@types/minimatch/index.d.ts","../../node_modules/@types/glob/index.d.ts","../../node_modules/@types/lodash/common/common.d.ts","../../node_modules/@types/lodash/common/array.d.ts","../../node_modules/@types/lodash/common/collection.d.ts","../../node_modules/@types/lodash/common/date.d.ts","../../node_modules/@types/lodash/common/function.d.ts","../../node_modules/@types/lodash/common/lang.d.ts","../../node_modules/@types/lodash/common/math.d.ts","../../node_modules/@types/lodash/common/number.d.ts","../../node_modules/@types/lodash/common/object.d.ts","../../node_modules/@types/lodash/common/seq.d.ts","../../node_modules/@types/lodash/common/string.d.ts","../../node_modules/@types/lodash/common/util.d.ts","../../node_modules/@types/lodash/index.d.ts","../../node_modules/@types/minimist/index.d.ts","../../node_modules/@types/normalize-package-data/index.d.ts","../../node_modules/@types/prettier/index.d.ts","../../node_modules/@types/semver/classes/semver.d.ts","../../node_modules/@types/semver/functions/parse.d.ts","../../node_modules/@types/semver/functions/valid.d.ts","../../node_modules/@types/semver/functions/clean.d.ts","../../node_modules/@types/semver/functions/inc.d.ts","../../node_modules/@types/semver/functions/diff.d.ts","../../node_modules/@types/semver/functions/major.d.ts","../../node_modules/@types/semver/functions/minor.d.ts","../../node_modules/@types/semver/functions/patch.d.ts","../../node_modules/@types/semver/functions/prerelease.d.ts","../../node_modules/@types/semver/functions/compare.d.ts","../../node_modules/@types/semver/functions/rcompare.d.ts","../../node_modules/@types/semver/functions/compare-loose.d.ts","../../node_modules/@types/semver/functions/compare-build.d.ts","../../node_modules/@types/semver/functions/sort.d.ts","../../node_modules/@types/semver/functions/rsort.d.ts","../../node_modules/@types/semver/functions/gt.d.ts","../../node_modules/@types/semver/functions/lt.d.ts","../../node_modules/@types/semver/functions/eq.d.ts","../../node_modules/@types/semver/functions/neq.d.ts","../../node_modules/@types/semver/functions/gte.d.ts","../../node_modules/@types/semver/functions/lte.d.ts","../../node_modules/@types/semver/functions/cmp.d.ts","../../node_modules/@types/semver/functions/coerce.d.ts","../../node_modules/@types/semver/classes/comparator.d.ts","../../node_modules/@types/semver/classes/range.d.ts","../../node_modules/@types/semver/functions/satisfies.d.ts","../../node_modules/@types/semver/ranges/max-satisfying.d.ts","../../node_modules/@types/semver/ranges/min-satisfying.d.ts","../../node_modules/@types/semver/ranges/to-comparators.d.ts","../../node_modules/@types/semver/ranges/min-version.d.ts","../../node_modules/@types/semver/ranges/valid.d.ts","../../node_modules/@types/semver/ranges/outside.d.ts","../../node_modules/@types/semver/ranges/gtr.d.ts","../../node_modules/@types/semver/ranges/ltr.d.ts","../../node_modules/@types/semver/ranges/intersects.d.ts","../../node_modules/@types/semver/ranges/simplify.d.ts","../../node_modules/@types/semver/ranges/subset.d.ts","../../node_modules/@types/semver/internals/identifiers.d.ts","../../node_modules/@types/semver/index.d.ts"],"fileInfos":[{"version":"6adbf5efd0e374ff5f427a4f26a5a413e9734eee5067a0e86da69aea41910b52","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","e21c071ca3e1b4a815d5f04a7475adcaeea5d64367e840dd0154096d705c3940",{"version":"abba1071bfd89e55e88a054b0c851ea3e8a494c340d0f3fab19eb18f6afb0c9e","affectsGlobalScope":true},{"version":"927cb2b60048e1395b183bf74b2b80a75bdb1dbe384e1d9fac654313ea2fb136","affectsGlobalScope":true},{"version":"7fac8cb5fc820bc2a59ae11ef1c5b38d3832c6d0dfaec5acdb5569137d09a481","affectsGlobalScope":true},{"version":"097a57355ded99c68e6df1b738990448e0bf170e606707df5a7c0481ff2427cd","affectsGlobalScope":true},{"version":"d8996609230d17e90484a2dd58f22668f9a05a3bfe00bfb1d6271171e54a31fb","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"4378fc8122ec9d1a685b01eb66c46f62aba6b239ca7228bb6483bcf8259ee493","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"62d80405c46c3f4c527ee657ae9d43fda65a0bf582292429aea1e69144a522a6","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"1b3fe904465430e030c93239a348f05e1be80640d91f2f004c3512c2c2c89f34","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"d071129cba6a5f2700be09c86c07ad2791ab67d4e5ed1eb301d6746c62745ea4","affectsGlobalScope":true},{"version":"10bbdc1981b8d9310ee75bfac28ee0477bb2353e8529da8cff7cb26c409cb5e8","affectsGlobalScope":true},"1f03b495671c3a1bd24510f38b8947f0991dfd6bf0278c68eca14af15b306e1f","f44c7e8edf452ef8eebea847c4a72f92f5a1afe341d45411ded867513d69011d","c5d4f483bda63c9cb7bf80a97d70abc6a2df14d8a1913ef6666bfda1a6c0feeb","bb0e4b340003613a761020eeaeb2b427d19e830dbacfe94321087fd829f6b78c","9175e6783741471e695e9514a70b23d3cf083a60cfab803f24db898e772d1ca8","2c3d97a84af1289bbff642ac7e31e2cd17fa28598c4eb216b6f7907c4b9956a1","2bd1aeba3c6a7f6c873f5633a7f21a4f85b5c691cf40ab7d8a91de9b7255e109","938119e25d271de4fcf8be0583b4205ee279839ddc9b870206dee44bc9df2d29","30a0a331dc5ca5c3d34a3f3b6bbd2e7badc62c1effe393650af1d78afcf31c76","17dec98c15b12786d26552f0b4eed667d1850a9f169a6a955974a616f86c7839","18bb969dfe3c49c1888ffd533f5f1cff2a7de0a4845336d1467795ddfae80edc","24d801b012eab670190ad09a0e0a9793801b49f0b743bbc97cd401bea8bce816","29e2fa65c45b57b8be7918cb4085ea14a11f50cab9f2d15f634616e19baaf5b1","4cb8ecd4c95174c75c85ff85de36ca89205d0d05cb423bbc0edfa51071558db9","0c5a9dafe981c6b8e663762c59f02388950910058574b18ae8cb24137e893c0b","5d4a9bfadc57068bda8eae860810e963ccc4570924a1f734d4de93984e38cb99","627f25a052bd6ba0f91c9a54857fd8030b34dffed7eb24c3036fbef274f8a276","81c7c5fa33f73971a63a776b5e1831872127c88377ea8b1c52a0651c3f2adc02","ade25ac7b51310d64d004d5811af33603a8ed53812803dd356624a2075e0be2f","77851c3820f174bbd2aef16fb0c393783ee9468a360756db96c8646a6c9763d9","559e91a02e6155ba53bda306ff9a94369f1c9131a8d912bc17698278b356443c","63199d76f6cc769b242566bca25e6b7300d1c9c00569f1ad675eba6b74e97040","338bd7c3518b05b4c473971be0e5f8f854aca7cdb00d1b97192c14860f4ebf2f",{"version":"b17f71fadbcc37356976b56897e195ac855a19fdff6d7c4277638e8ef1c93279","signature":"bac74d44be42a7bd5f137b6145e2af7dfd388c4670f271ddbea3487d6b1f3c83"},"0bc03e521b73792d4512976dbddd8a750ddce9b06b13cf2c38685c78b97fdcc0","c8fbcf60d81581b50851f6ab8b59bd365916fdd44a0620293d048c79097f63d7","8f752c50cd5bb26347ce6e53d2ed502494fdfc734aab266cb739dbec6f516b42","eb876afa9a4c51f9beedf27208c05fa9beaf4283ed71b3e991a8040e921bf9c1","66dc5d0cb1eed26a44cdb3cf93bb747c633f9c18ab5a5d7c2fd3e74ed5442aba","bd62ee2b82902b6a92a7d0a71a336ffe6ae84d8980afee73bb6afedf85c8fb1e","427aa4f679d92576e6dd9bafa5d32499860a376488e5f89ff307a583cde91544","9e23012a1449d07a7b6815183956ec86465514564937300ea2dd74d459c957fa","4a6e0a7021d82e63674b86895c559efddcb5ff7a41131a8bb6495f312426106f","a0a44b44d4ce9cef5f286238d1cd72d484087526fa7c5dd5a16b4b801e341870","1b60380d3838ec34bef4cc2aa673168cb09deb71d57c1ae54403443b85dcea70","081f763ebd04dca85c09aa8f64213c9d07826ce17943a78e0edc2d5986872a63","285ab2f632e7b88424b1cb1e928441a000fe5efd0acfd2a7c2bbd4435b34e784","5e9600683290011716d2b6ef31467427c506ae498bbbb4e60c4c68afe804e81d","eae7c3484c420b0386a118a393b16ce02e5a164e79add8f844f895bc3bc56475","45ad8bee545911545efb77a9da58f0895973609312b670189ba06b3164a20e8e","1210d3ee55776b0f56af1f98060c8dd3872b267d27b09fac68c0703264bc457f","04b3a7ea02ec41f057cf15c6a0b9b9d89c4b5592a5ad6945b4f96d744b78ed11",{"version":"64d4b35c5456adf258d2cf56c341e203a073253f229ef3208fc0d5020253b241","affectsGlobalScope":true},"0133ebdd17a823ae56861948870cde4dac18dd8818ab641039c85bbb720429e0","0359682c54e487c4cab2b53b2b4d35cc8dea4d9914bc6abcdb5701f8b8e745a4","7d7c8ef7d48a035142c07dae60545ecc0e4af4c337742760cb09726f2f8e31db","ab9cce8526b1878586804696261de5505885a9b9bbe8af15e99b7387c81f2b6d","0d5a2ee1fdfa82740e0103389b9efd6bfe145a20018a2da3c02b89666181f4d9","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"92d63add669d18ebc349efbacd88966d6f2ccdddfb1b880b2db98ae3aa7bf7c4","affectsGlobalScope":true},"ccc94049a9841fe47abe5baef6be9a38fc6228807974ae675fb15dc22531b4be",{"version":"9acfe4d1ff027015151ce81d60797b04b52bffe97ad8310bb0ec2e8fd61e1303","affectsGlobalScope":true},"95843d5cfafced8f3f8a5ce57d2335f0bcd361b9483587d12a25e4bd403b8216","afc6e96061af46bcff47246158caee7e056f5288783f2d83d6858cd25be1c565",{"version":"34f5bcac12b36d70304b73de5f5aab3bb91bd9919f984be80579ebcad03a624e","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","2f520601649a893e6a49a8851ebfcf4be8ce090dc1281c2a08a871cb04e8251f","f50c975ab7b50e25a69e3d8a3773894125b44e9698924105f23b812bf7488baf","2b8c764f856a1dd0a9a2bf23e5efddbff157de8138b0754010be561ae5fcaa90","ad4b60488fb1e562bf375dac9299815f7028bf667d9b5887b2d01d501b7d1ddd","246341c3a7a2638cf830d690e69de1e6085a102c6a30596435b050e6ac86c11a","6972fca26f6e9bd56197568d4379f99071a90766e06b4fcb5920a0130a9202be",{"version":"4a2628e95962c8ab756121faa3ac2ed348112ff7a87b5c286dd2cc3326546b4c","affectsGlobalScope":true},"aa8fe22e10f78a67b2ffbcc614b45fe258ff9e71d53ddb56e75fa7883c530270","a049a59a02009fc023684fcfaf0ac526fe36c35dcc5d2b7d620c1750ba11b083","a361a26932d73497a174a6d48c53cfedb55f735f20e8638fdf7b25cdeaac9ca4","b287b810b5035d5685f1df6e1e418f1ca452a3ed4f59fd5cc081dbf2045f0d9b","4b9a003b5c556c96784132945bb41c655ea11273b1917f5c8d0c154dd5fd20dd","a458dc78104cc80048ac24fdc02fe6dce254838094c2f25641b3f954d9721241",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"902cd98bf46e95caf4118a0733fb801e9e90eec3edaed6abdad77124afec9ca2","abc1c425b2ad6720433f40f1877abfa4223f0f3dd486c9c28c492179ca183cb6","cd4854d38f4eb5592afd98ab95ca17389a7dfe38013d9079e802d739bdbcc939","94eed4cc2f5f658d5e229ff1ccd38860bddf4233e347bf78edd2154dee1f2b99",{"version":"e51bee3200733b1f58818b5a9ea90fcd61c5b8afa3a0378391991f3696826a65","affectsGlobalScope":true},"9f1069b9e2c051737b1f9b4f1baf50e4a63385a6a89c32235549ae87fc3d5492","ee18f2da7a037c6ceeb112a084e485aead9ea166980bf433474559eac1b46553","29c2706fa0cc49a2bd90c83234da33d08bb9554ecec675e91c1f85087f5a5324","0acbf26bf958f9e80c1ffa587b74749d2697b75b484062d36e103c137c562bc3","d7838022c7dab596357a9604b9c6adffe37dc34085ce0779c958ce9545bd7139","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff",{"version":"806ef4cac3b3d9fa4a48d849c8e084d7c72fcd7b16d76e06049a9ed742ff79c0","affectsGlobalScope":true},"a279435e7813d1f061c0cab6ab77b1b9377e8d96851e5ed4a76a1ce6eb6e628f","c33a6ea7147af60d8e98f1ac127047f4b0d4e2ce28b8f08ff3de07ca7cc00637",{"version":"b42b47e17b8ece2424ae8039feb944c2e3ba4b262986aebd582e51efbdca93dc","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","2408611d9b4146e35d1dbd1f443ccd8e187c74614a54b80300728277529dbf11","998a3de5237518c0b3ac00a11b3b4417affb008aa20aedee52f3fdae3cb86151","ad41008ffe077206e1811fc873f4d9005b5fd7f6ab52bb6118fef600815a5cb4","d88ecca73348e7c337541c4b8b60a50aca5e87384f6b8a422fc6603c637e4c21","badae0df9a8016ac36994b0a0e7b82ba6aaa3528e175a8c3cb161e4683eec03e","c3db860bcaaaeb3bbc23f353bbda1f8ab82756c8d5e973bebb3953cb09ea68f2","235a53595bd20b0b0eeb1a29cb2887c67c48375e92f03749b2488fbd46d0b1a0","bc09393cd4cd13f69cf1366d4236fbae5359bb550f0de4e15767e9a91d63dfb1","9c266243b01545e11d2733a55ad02b4c00ecdbda99c561cd1674f96e89cdc958","c71155c05fc76ff948a4759abc1cb9feec036509f500174bc18dad4c7827a60c",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"e6ef68f677c1b63967d87568043b8af9d2dfd71d5873acd1de3abeb1db606741","ed19da84b7dbf00952ad0b98ce5c194f1903bcf7c94d8103e8e0d63b271543ae","8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","fd326577c62145816fe1acc306c734c2396487f76719d3785d4e825b34540b33","675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","378df8bbbb9e3f6fca05d58f644aab538e1062eab5e778fb0b83d41125df246d","d88a479cccf787b4aa82362150fbeba5211a32dbfafa7b92ba6995ecaf9a1a89","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","c24ad9be9adf28f0927e3d9d9e9cec1c677022356f241ccbbfb97bfe8fb3d1a1","0ec0998e2d085e8ea54266f547976ae152c9dd6cdb9ac4d8a520a230f5ebae84","9364c7566b0be2f7b70ff5285eb34686f83ccb01bda529b82d23b2a844653bfb","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","ae9930989ed57478eb03b9b80ad3efa7a3eacdfeff0f78ecf7894c4963a64f93","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3e59f00ab03c33717b3130066d4debb272da90eeded4935ff0604c2bc25a5cae","9fa6b83a35e897f340858995ca5d77e901d89fd18644cd4c9e8a4afe0b2e6363",{"version":"0714e2046df66c0e93c3330d30dbc0565b3e8cd3ee302cf99e4ede6220e5fec8","affectsGlobalScope":true},"209e814e8e71aec74f69686a9506dd7610b97ab59dcee9446266446f72a76d05","6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a","f58599a92d4a64416f4999a4d7241e1647aec2a6249214892722f712a6eedbe0","d9e55d93aa33fad61bd5c63800972d00ba8879ec5d29f6f3bce67d16d86abc33","2ac9c8332c5f8510b8bdd571f8271e0f39b0577714d5e95c1e79a12b2616f069","42c21aa963e7b86fa00801d96e88b36803188018d5ad91db2a9101bccd40b3ff","d31eb848cdebb4c55b4893b335a7c0cca95ad66dee13cbb7d0893810c0a9c301","77c1d91a129ba60b8c405f9f539e42df834afb174fe0785f89d92a2c7c16b77a","c544d81603149987796b24cca297c965db427b84b2580fb27e52fb37ddc1f470","906c751ef5822ec0dadcea2f0e9db64a33fb4ee926cc9f7efa38afe5d5371b2a","5387c049e9702f2d2d7ece1a74836a14b47fbebe9bbeb19f94c580a37c855351","c68391fb9efad5d99ff332c65b1606248c4e4a9f1dd9a087204242b56c7126d6","e9cf02252d3a0ced987d24845dcb1f11c1be5541f17e5daa44c6de2d18138d0c","e8b02b879754d85f48489294f99147aeccc352c760d95a6fe2b6e49cd400b2fe","9f6908ab3d8a86c68b86e38578afc7095114e66b2fc36a2a96e9252aac3998e0","0eedb2344442b143ddcd788f87096961cd8572b64f10b4afc3356aa0460171c6","9eb2875a1e4c583066af7d6194ea8162191b2756e5d87ccb3c562fdf74d06869","c68baff4d8ba346130e9753cefe2e487a16731bf17e05fdacc81e8c9a26aae9d","2cd15528d8bb5d0453aa339b4b52e0696e8b07e790c153831c642c3dea5ac8af","479d622e66283ffa9883fbc33e441f7fc928b2277ff30aacbec7b7761b4e9579","ade307876dc5ca267ca308d09e737b611505e015c535863f22420a11fffc1c54","f8cdefa3e0dee639eccbe9794b46f90291e5fd3989fcba60d2f08fde56179fb9","86c5a62f99aac7053976e317dbe9acb2eaf903aaf3d2e5bb1cafe5c2df7b37a8","2b300954ce01a8343866f737656e13243e86e5baef51bd0631b21dcef1f6e954","a2d409a9ffd872d6b9d78ead00baa116bbc73cfa959fce9a2f29d3227876b2a1","b288936f560cd71f4a6002953290de9ff8dfbfbf37f5a9391be5c83322324898","61178a781ef82e0ff54f9430397e71e8f365fc1e3725e0e5346f2de7b0d50dfa","6a6ccb37feb3aad32d9be026a3337db195979cd5727a616fc0f557e974101a54","6eef5113135a0f2bbac8259909a5bbb7666bcde022c28f4ab95145623cbe1f72","058b8dd97b7c67b6bf33e7bda7b1e247b019b675d4b6449d14ac002091a8b4f8","89c8a7b88c378663a8124664f2d9b8c2887e186b55aa066edf6d67177ca1aa04","5a30ba65ad753eb2ef65355dbb3011b28b192cb9df2ef0b5f595b51ca7faf353","b15e55c5fa977c2f25ca0b1db52cfa2d1fd4bf0baf90a8b90d4a7678ca462ff1","f41d30972724714763a2698ae949fbc463afb203b5fa7c4ad7e4de0871129a17","86d425f7fcd8d100dafa6286cc289af88cbb639ecbdbd25c3018a8f0f7b09fe5","9795e0a3a45d5b6f1a791ee54b7c8b58bc931e8900966cea2dff9c5bae56073b","5890be29879d02424b7654f40592915189034948f7a18c5ad121c006d4e92811","0ab49086f10c75a1cb3b18bffe799dae021774146d8a2d5a4bb42dda67b64f9b","81c77839e152b8f715ec67b0a8b910bcc2d6cf916794c3519f8798c40efd12ac","a868a534ba1c2ca9060b8a13b0ffbbbf78b4be7b0ff80d8c75b02773f7192c29","464843c00fb3dd4735b28255c5c9fe713f16b8e47a3db09ba1647687440f7aef","34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","d0f6d36b2d86f934560c48d8bfdc7ab60c67cfb2ab6dc1916706aa68e83d6dc2"],"options":{"allowSyntheticDefaultImports":true,"allowUmdGlobalAccess":false,"declaration":false,"emitDecoratorMetadata":true,"esModuleInterop":true,"experimentalDecorators":true,"inlineSourceMap":false,"inlineSources":true,"jsx":1,"module":1,"newLine":1,"noErrorTruncation":true,"noImplicitOverride":true,"noImplicitThis":true,"noUncheckedIndexedAccess":true,"preserveConstEnums":true,"removeComments":false,"skipLibCheck":true,"sourceMap":true,"strict":false,"strictNullChecks":false,"target":6},"fileIdsList":[[133],[85,86,87,88,133],[89,133],[106,133,140],[105,106,133,140,142],[133,144,146,147,148,149,150,151,152,153,154,155,156],[133,144,145,147,148,149,150,151,152,153,154,155,156],[133,145,146,147,148,149,150,151,152,153,154,155,156],[133,144,145,146,148,149,150,151,152,153,154,155,156],[133,144,145,146,147,149,150,151,152,153,154,155,156],[133,144,145,146,147,148,150,151,152,153,154,155,156],[133,144,145,146,147,148,149,151,152,153,154,155,156],[133,144,145,146,147,148,149,150,152,153,154,155,156],[133,144,145,146,147,148,149,150,151,153,154,155,156],[133,144,145,146,147,148,149,150,151,152,154,155,156],[133,144,145,146,147,148,149,150,151,152,153,155,156],[133,144,145,146,147,148,149,150,151,152,153,154,156],[133,144,145,146,147,148,149,150,151,152,153,154,155],[90,133],[93,133],[94,99,133],[95,105,106,113,122,132,133],[95,96,105,113,133],[97,133],[98,99,106,114,133],[99,122,129,133],[100,102,105,113,133],[101,133],[102,103,133],[104,105,133],[105,133],[105,106,107,122,132,133],[105,106,107,122,133],[108,113,122,132,133],[105,106,108,109,113,122,129,132,133],[108,110,122,129,132,133],[90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139],[105,111,133],[112,132,133],[102,105,113,122,133],[114,133],[115,133],[93,116,133],[117,131,133,137],[118,133],[119,133],[105,120,133],[120,121,133,135],[105,122,123,124,133],[122,124,133],[122,123,133],[125,133],[126,133],[105,127,128,133],[127,128,133],[99,113,129,133],[130,133],[113,131,133],[94,108,119,132,133],[99,133],[122,133,134],[133,135],[133,136],[94,99,105,107,116,122,132,133,135,137],[122,133,138],[133,160,199],[133,160,184,199],[133,199],[133,160],[133,160,185,199],[133,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198],[133,185,199],[73,74,75,133],[73,74,133],[72,76,77,78,133],[45,46,133],[44,51,133],[53,133],[46,133],[57,133],[45,48,59,133],[45,48,52,133],[44,133],[44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,66,67,68,69,70,71,133],[48,133],[65,72,133],[48,70,133],[50,133],[72,133],[58,133],[61,133],[65,72]],"referencedMap":[[8,1],[9,1],[13,1],[12,1],[2,1],[14,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[21,1],[3,1],[4,1],[25,1],[22,1],[23,1],[24,1],[26,1],[27,1],[28,1],[5,1],[29,1],[30,1],[31,1],[32,1],[6,1],[43,1],[33,1],[34,1],[35,1],[36,1],[7,1],[41,1],[37,1],[38,1],[39,1],[40,1],[1,1],[42,1],[11,1],[10,1],[65,1],[85,1],[89,2],[86,3],[88,1],[141,4],[143,5],[87,1],[145,6],[146,7],[144,8],[147,9],[148,10],[149,11],[150,12],[151,13],[152,14],[153,15],[154,16],[155,17],[156,18],[142,1],[157,1],[90,19],[91,19],[93,20],[94,21],[95,22],[96,23],[97,24],[98,25],[99,26],[100,27],[101,28],[102,29],[103,29],[104,30],[105,31],[106,32],[107,33],[92,1],[139,1],[108,34],[109,35],[110,36],[140,37],[111,38],[112,39],[113,40],[114,41],[115,42],[116,43],[117,44],[118,45],[119,46],[120,47],[121,48],[122,49],[124,50],[123,51],[125,52],[126,53],[127,54],[128,55],[129,56],[130,57],[131,58],[132,59],[133,60],[134,61],[135,62],[136,63],[137,64],[138,65],[158,1],[159,1],[184,66],[185,67],[160,68],[163,68],[182,66],[183,66],[173,69],[172,69],[170,66],[165,66],[178,66],[176,66],[180,66],[164,66],[177,66],[181,66],[166,66],[167,66],[179,66],[161,66],[168,66],[169,66],[171,66],[175,66],[186,70],[174,66],[162,66],[199,71],[198,1],[193,70],[195,72],[194,70],[187,70],[188,70],[190,70],[192,70],[196,72],[197,72],[189,72],[191,72],[76,73],[73,1],[75,74],[74,1],[78,75],[77,1],[44,1],[47,76],[48,1],[49,1],[50,1],[52,77],[54,78],[55,1],[56,79],[58,80],[60,81],[57,1],[59,82],[53,1],[61,1],[51,1],[46,83],[72,84],[62,85],[63,1],[64,1],[45,83],[66,86],[67,1],[68,1],[69,1],[71,87],[70,1],[80,88],[82,89],[83,90],[81,91],[84,89],[79,1]],"exportedModulesMap":[[8,1],[9,1],[13,1],[12,1],[2,1],[14,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[21,1],[3,1],[4,1],[25,1],[22,1],[23,1],[24,1],[26,1],[27,1],[28,1],[5,1],[29,1],[30,1],[31,1],[32,1],[6,1],[43,1],[33,1],[34,1],[35,1],[36,1],[7,1],[41,1],[37,1],[38,1],[39,1],[40,1],[1,1],[42,1],[11,1],[10,1],[65,1],[85,1],[89,2],[86,3],[88,1],[141,4],[143,5],[87,1],[145,6],[146,7],[144,8],[147,9],[148,10],[149,11],[150,12],[151,13],[152,14],[153,15],[154,16],[155,17],[156,18],[142,1],[157,1],[90,19],[91,19],[93,20],[94,21],[95,22],[96,23],[97,24],[98,25],[99,26],[100,27],[101,28],[102,29],[103,29],[104,30],[105,31],[106,32],[107,33],[92,1],[139,1],[108,34],[109,35],[110,36],[140,37],[111,38],[112,39],[113,40],[114,41],[115,42],[116,43],[117,44],[118,45],[119,46],[120,47],[121,48],[122,49],[124,50],[123,51],[125,52],[126,53],[127,54],[128,55],[129,56],[130,57],[131,58],[132,59],[133,60],[134,61],[135,62],[136,63],[137,64],[138,65],[158,1],[159,1],[184,66],[185,67],[160,68],[163,68],[182,66],[183,66],[173,69],[172,69],[170,66],[165,66],[178,66],[176,66],[180,66],[164,66],[177,66],[181,66],[166,66],[167,66],[179,66],[161,66],[168,66],[169,66],[171,66],[175,66],[186,70],[174,66],[162,66],[199,71],[198,1],[193,70],[195,72],[194,70],[187,70],[188,70],[190,70],[192,70],[196,72],[197,72],[189,72],[191,72],[76,73],[73,1],[75,74],[74,1],[78,75],[77,1],[44,1],[47,76],[48,1],[49,1],[50,1],[52,77],[54,78],[55,1],[56,79],[58,80],[60,81],[57,1],[59,82],[53,1],[61,1],[51,1],[46,83],[72,84],[62,85],[63,1],[64,1],[45,83],[66,92],[67,1],[68,1],[69,1],[71,87],[70,1],[80,88],[82,89],[83,90],[81,91],[84,89],[79,1]],"semanticDiagnosticsPerFile":[8,9,13,12,2,14,15,16,17,18,19,20,21,3,4,25,22,23,24,26,27,28,5,29,30,31,32,6,43,33,34,35,36,7,41,37,38,39,40,1,42,11,10,65,85,89,86,88,141,143,87,145,146,144,147,148,149,150,151,152,153,154,155,156,142,157,90,91,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,92,139,108,109,110,140,111,112,113,114,115,116,117,118,119,120,121,122,124,123,125,126,127,128,129,130,131,132,133,134,135,136,137,138,158,159,184,185,160,163,182,183,173,172,170,165,178,176,180,164,177,181,166,167,179,161,168,169,171,175,186,174,162,199,198,193,195,194,187,188,190,192,196,197,189,191,76,73,75,74,78,77,44,47,48,49,50,52,54,55,56,58,60,57,59,53,61,51,46,72,62,63,64,45,66,67,68,69,71,70,80,82,83,81,84,79],"affectedFilesPendingEmit":[[2,1],[3,1],[4,1],[5,1],[6,1],[43,1],[7,1],[65,1],[85,1],[89,1],[86,1],[88,1],[141,1],[143,1],[87,1],[145,1],[146,1],[144,1],[147,1],[148,1],[149,1],[150,1],[151,1],[152,1],[153,1],[154,1],[155,1],[156,1],[142,1],[157,1],[90,1],[91,1],[93,1],[94,1],[95,1],[96,1],[97,1],[98,1],[99,1],[100,1],[101,1],[102,1],[103,1],[104,1],[105,1],[106,1],[107,1],[92,1],[139,1],[108,1],[109,1],[110,1],[140,1],[111,1],[112,1],[113,1],[114,1],[115,1],[116,1],[117,1],[118,1],[119,1],[120,1],[121,1],[122,1],[124,1],[123,1],[125,1],[126,1],[127,1],[128,1],[129,1],[130,1],[131,1],[132,1],[133,1],[134,1],[135,1],[136,1],[137,1],[138,1],[158,1],[159,1],[184,1],[185,1],[160,1],[163,1],[182,1],[183,1],[173,1],[172,1],[170,1],[165,1],[178,1],[176,1],[180,1],[164,1],[177,1],[181,1],[166,1],[167,1],[179,1],[161,1],[168,1],[169,1],[171,1],[175,1],[186,1],[174,1],[162,1],[199,1],[198,1],[193,1],[195,1],[194,1],[187,1],[188,1],[190,1],[192,1],[196,1],[197,1],[189,1],[191,1],[76,1],[73,1],[75,1],[74,1],[78,1],[77,1],[44,1],[47,1],[48,1],[49,1],[50,1],[52,1],[54,1],[55,1],[56,1],[58,1],[60,1],[57,1],[59,1],[53,1],[61,1],[51,1],[46,1],[72,1],[62,1],[63,1],[64,1],[45,1],[66,1],[67,1],[68,1],[69,1],[71,1],[70,1],[80,1],[82,1],[83,1],[81,1],[84,1],[79,1]]},"version":"4.5.2"}