@dipscope/type-manager 5.0.0-beta.1 → 5.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (108) hide show
  1. package/CHANGELOG.md +224 -224
  2. package/LICENSE.md +201 -201
  3. package/README.md +1857 -1846
  4. package/alias.d.ts +6 -6
  5. package/custom-data.d.ts +6 -6
  6. package/default-value-resolver.d.ts +7 -7
  7. package/default-value.d.ts +7 -7
  8. package/discriminant.d.ts +8 -8
  9. package/discriminator.d.ts +6 -6
  10. package/factories/index.d.ts +1 -1
  11. package/factories/type-factory.d.ts +19 -19
  12. package/factory.d.ts +18 -18
  13. package/functions/get-own-reflect-metadata.d.ts +9 -9
  14. package/functions/get-reflect-metadata.d.ts +10 -10
  15. package/functions/get-words.d.ts +8 -8
  16. package/functions/index.d.ts +16 -16
  17. package/functions/is-arrow-function.d.ts +8 -8
  18. package/functions/is-ctor-function.d.ts +8 -8
  19. package/functions/is-data-view.d.ts +8 -8
  20. package/functions/is-float-32-array.d.ts +8 -8
  21. package/functions/is-float-64-array.d.ts +8 -8
  22. package/functions/is-int-16-array.d.ts +8 -8
  23. package/functions/is-int-32-array.d.ts +8 -8
  24. package/functions/is-int-8-array.d.ts +8 -8
  25. package/functions/is-uint-16-array.d.ts +8 -8
  26. package/functions/is-uint-32-array.d.ts +8 -8
  27. package/functions/is-uint-8-array.d.ts +8 -8
  28. package/functions/is-uint-8-clamped-array.d.ts +8 -8
  29. package/functions/name-of.d.ts +8 -8
  30. package/generic-argument.d.ts +7 -7
  31. package/generic-metadata.d.ts +7 -7
  32. package/index.d.ts +54 -54
  33. package/index.js +1 -1
  34. package/inject-index.d.ts +6 -6
  35. package/inject-metadata.d.ts +88 -72
  36. package/inject-options.d.ts +22 -22
  37. package/inject.d.ts +10 -10
  38. package/injector.d.ts +16 -16
  39. package/injectors/index.d.ts +1 -1
  40. package/injectors/singleton-injector.d.ts +31 -31
  41. package/log-level.d.ts +11 -11
  42. package/log.d.ts +95 -95
  43. package/metadata.d.ts +42 -42
  44. package/naming-convention.d.ts +15 -15
  45. package/naming-conventions/camel-case-naming-convention.d.ts +26 -26
  46. package/naming-conventions/flat-case-naming-convention.d.ts +25 -25
  47. package/naming-conventions/flat-upper-case-naming-convention.d.ts +25 -25
  48. package/naming-conventions/index.d.ts +8 -8
  49. package/naming-conventions/kebab-case-naming-convention.d.ts +26 -26
  50. package/naming-conventions/kebab-upper-case-naming-convention.d.ts +26 -26
  51. package/naming-conventions/pascal-case-naming-convention.d.ts +26 -26
  52. package/naming-conventions/snake-case-naming-convention.d.ts +26 -26
  53. package/naming-conventions/snake-upper-case-naming-convention.d.ts +26 -26
  54. package/package.json +55 -51
  55. package/property-metadata.d.ts +309 -196
  56. package/property-name.d.ts +6 -6
  57. package/property-options.d.ts +116 -116
  58. package/property.d.ts +13 -13
  59. package/reference-callback.d.ts +7 -7
  60. package/reference-handler.d.ts +31 -31
  61. package/reference-handlers/direct-reference-handler.d.ts +32 -32
  62. package/reference-handlers/index.d.ts +3 -3
  63. package/reference-handlers/lead-reference-handler.d.ts +33 -33
  64. package/reference-handlers/path-reference-handler.d.ts +55 -55
  65. package/reference-key.d.ts +6 -6
  66. package/reference-value-getter.d.ts +7 -7
  67. package/reference-value-setter.d.ts +7 -7
  68. package/reference-value.d.ts +6 -6
  69. package/serializer-context-options.d.ts +43 -43
  70. package/serializer-context.d.ts +410 -362
  71. package/serializer.d.ts +27 -27
  72. package/serializers/array-buffer-serializer.d.ts +28 -28
  73. package/serializers/array-serializer.d.ts +28 -28
  74. package/serializers/boolean-serializer.d.ts +37 -37
  75. package/serializers/data-view-serializer.d.ts +28 -28
  76. package/serializers/date-serializer.d.ts +28 -28
  77. package/serializers/float-32-array-serializer.d.ts +28 -28
  78. package/serializers/float-64-array-serializer.d.ts +28 -28
  79. package/serializers/index.d.ts +19 -19
  80. package/serializers/int-16-array-serializer.d.ts +28 -28
  81. package/serializers/int-32-array-serializer.d.ts +28 -28
  82. package/serializers/int-8-array-serializer.d.ts +28 -28
  83. package/serializers/map-serializer.d.ts +28 -40
  84. package/serializers/number-serializer.d.ts +37 -37
  85. package/serializers/set-serializer.d.ts +28 -28
  86. package/serializers/string-serializer.d.ts +37 -37
  87. package/serializers/type-serializer.d.ts +28 -28
  88. package/serializers/uint-16-array-serializer.d.ts +28 -28
  89. package/serializers/uint-32-array-serializer.d.ts +28 -28
  90. package/serializers/uint-8-array-serializer.d.ts +28 -28
  91. package/serializers/uint-8-clamped-array-serializer.d.ts +28 -28
  92. package/type-abstraction.d.ts +8 -8
  93. package/type-argument.d.ts +9 -9
  94. package/type-context-entry.d.ts +36 -36
  95. package/type-context.d.ts +58 -58
  96. package/type-ctor.d.ts +6 -6
  97. package/type-fn.d.ts +8 -8
  98. package/type-like.d.ts +7 -7
  99. package/type-manager-options.d.ts +24 -24
  100. package/type-manager.d.ts +331 -331
  101. package/type-metadata-resolver.d.ts +8 -8
  102. package/type-metadata-symbol.d.ts +6 -6
  103. package/type-metadata.d.ts +472 -322
  104. package/type-name.d.ts +6 -6
  105. package/type-options-base.d.ts +90 -90
  106. package/type-options.d.ts +79 -79
  107. package/type-resolver.d.ts +7 -7
  108. package/type.d.ts +9 -9
package/alias.d.ts CHANGED
@@ -1,6 +1,6 @@
1
- /**
2
- * Type to explicitly define an alias within a source code.
3
- *
4
- * @type {Alias}
5
- */
6
- export declare type Alias = string;
1
+ /**
2
+ * Type to explicitly define an alias within a source code.
3
+ *
4
+ * @type {Alias}
5
+ */
6
+ export declare type Alias = string;
package/custom-data.d.ts CHANGED
@@ -1,6 +1,6 @@
1
- /**
2
- * Custom data which can be defined by developer.
3
- *
4
- * @type {CustomData}
5
- */
6
- export declare type CustomData = Record<string, any>;
1
+ /**
2
+ * Custom data which can be defined by developer.
3
+ *
4
+ * @type {CustomData}
5
+ */
6
+ export declare type CustomData = Record<string, any>;
@@ -1,7 +1,7 @@
1
- /**
2
- * Resolver used to get default value. May be used if type represents a reference
3
- * which have to be unique.
4
- *
5
- * @type {DefaultValueResolver}
6
- */
7
- export declare type DefaultValueResolver = () => any;
1
+ /**
2
+ * Resolver used to get default value. May be used if type represents a reference
3
+ * which have to be unique.
4
+ *
5
+ * @type {DefaultValueResolver}
6
+ */
7
+ export declare type DefaultValueResolver = () => any;
@@ -1,7 +1,7 @@
1
- import { DefaultValueResolver } from './default-value-resolver';
2
- /**
3
- * Default value which can be defined by developer.
4
- *
5
- * @type {DefaultValue}
6
- */
7
- export declare type DefaultValue = any | DefaultValueResolver;
1
+ import { DefaultValueResolver } from './default-value-resolver';
2
+ /**
3
+ * Default value which can be defined by developer.
4
+ *
5
+ * @type {DefaultValue}
6
+ */
7
+ export declare type DefaultValue = any | DefaultValueResolver;
package/discriminant.d.ts CHANGED
@@ -1,8 +1,8 @@
1
- import { TypeName } from './type-name';
2
- /**
3
- * Discriminant intends to describe a unique key for a polymorphic type which will be
4
- * used during serialization and deserialization. Can be a type name, any string or number.
5
- *
6
- * @type {Discriminant}
7
- */
8
- export declare type Discriminant = TypeName | string | number;
1
+ import { TypeName } from './type-name';
2
+ /**
3
+ * Discriminant intends to describe a unique key for a polymorphic type which will be
4
+ * used during serialization and deserialization. Can be a type name, any string or number.
5
+ *
6
+ * @type {Discriminant}
7
+ */
8
+ export declare type Discriminant = TypeName | string | number;
@@ -1,6 +1,6 @@
1
- /**
2
- * Discriminator intends to indicate the property used to identify the type of an object.
3
- *
4
- * @type {Discriminator}
5
- */
6
- export declare type Discriminator = string;
1
+ /**
2
+ * Discriminator intends to indicate the property used to identify the type of an object.
3
+ *
4
+ * @type {Discriminator}
5
+ */
6
+ export declare type Discriminator = string;
@@ -1 +1 @@
1
- export * from './type-factory';
1
+ export * from './type-factory';
@@ -1,19 +1,19 @@
1
- import { Factory } from '../factory';
2
- import { Injector } from '../injector';
3
- import { TypeContext } from '../type-context';
4
- /**
5
- * Type factory.
6
- *
7
- * @type {TypeFactory}
8
- */
9
- export declare class TypeFactory implements Factory {
10
- /**
11
- * Builds type described by provided type metadata.
12
- *
13
- * @param {TypeContext<TType>} typeContext Type context.
14
- * @param {Injector} injector Injector.
15
- *
16
- * @returns {Record<string, any>} Type instance described by provided type metadata.
17
- */
18
- build<TType>(typeContext: TypeContext<TType>, injector: Injector): TType;
19
- }
1
+ import { Factory } from '../factory';
2
+ import { Injector } from '../injector';
3
+ import { TypeContext } from '../type-context';
4
+ /**
5
+ * Type factory.
6
+ *
7
+ * @type {TypeFactory}
8
+ */
9
+ export declare class TypeFactory implements Factory {
10
+ /**
11
+ * Builds type described by provided type metadata.
12
+ *
13
+ * @param {TypeContext<TType>} typeContext Type context.
14
+ * @param {Injector} injector Injector.
15
+ *
16
+ * @returns {Record<string, any>} Type instance described by provided type metadata.
17
+ */
18
+ build<TType>(typeContext: TypeContext<TType>, injector: Injector): TType;
19
+ }
package/factory.d.ts CHANGED
@@ -1,18 +1,18 @@
1
- import { Injector } from './injector';
2
- import { TypeContext } from './type-context';
3
- /**
4
- * Factory for building types.
5
- *
6
- * @type {Factory}
7
- */
8
- export interface Factory {
9
- /**
10
- * Builds type described by provided type context.
11
- *
12
- * @param {TypeContext<TType>} typeContext Type context.
13
- * @param {Injector} injector Injector.
14
- *
15
- * @returns {TType} Type instance described by provided type context.
16
- */
17
- build<TType>(typeContext: TypeContext<TType>, injector: Injector): TType;
18
- }
1
+ import { Injector } from './injector';
2
+ import { TypeContext } from './type-context';
3
+ /**
4
+ * Factory for building types.
5
+ *
6
+ * @type {Factory}
7
+ */
8
+ export interface Factory {
9
+ /**
10
+ * Builds type described by provided type context.
11
+ *
12
+ * @param {TypeContext<TType>} typeContext Type context.
13
+ * @param {Injector} injector Injector.
14
+ *
15
+ * @returns {TType} Type instance described by provided type context.
16
+ */
17
+ build<TType>(typeContext: TypeContext<TType>, injector: Injector): TType;
18
+ }
@@ -1,9 +1,9 @@
1
- /**
2
- * Gets own reflect metadata.
3
- *
4
- * @param {string} metadataKey Unique metadata key.
5
- * @param {any} target Target to extract from.
6
- *
7
- * @returns {any} Metadata for a key or undefined if metadata is not present.
8
- */
9
- export declare function getOwnReflectMetadata(metadataKey: string, target: any): any;
1
+ /**
2
+ * Gets own reflect metadata.
3
+ *
4
+ * @param {string} metadataKey Unique metadata key.
5
+ * @param {any} target Target to extract from.
6
+ *
7
+ * @returns {any} Metadata for a key or undefined if metadata is not present.
8
+ */
9
+ export declare function getOwnReflectMetadata(metadataKey: string, target: any): any;
@@ -1,10 +1,10 @@
1
- /**
2
- * Gets reflect metadata.
3
- *
4
- * @param {string} metadataKey Unique metadata key.
5
- * @param {any} target Target to extract from.
6
- * @param {string|symbol} propertyKey Key in a target.
7
- *
8
- * @returns {any} Metadata for a key or undefined if metadata is not present.
9
- */
10
- export declare function getReflectMetadata(metadataKey: string, target: any, propertyKey: string | symbol): any;
1
+ /**
2
+ * Gets reflect metadata.
3
+ *
4
+ * @param {string} metadataKey Unique metadata key.
5
+ * @param {any} target Target to extract from.
6
+ * @param {string|symbol} propertyKey Key in a target.
7
+ *
8
+ * @returns {any} Metadata for a key or undefined if metadata is not present.
9
+ */
10
+ export declare function getReflectMetadata(metadataKey: string, target: any, propertyKey: string | symbol): any;
@@ -1,8 +1,8 @@
1
- /**
2
- * Gets words from a string.
3
- *
4
- * @param {string} x String.
5
- *
6
- * @returns {Array<string>} Array with the words of provided string.
7
- */
8
- export declare function getWords(x: string): Array<string>;
1
+ /**
2
+ * Gets words from a string.
3
+ *
4
+ * @param {string} x String.
5
+ *
6
+ * @returns {Array<string>} Array with the words of provided string.
7
+ */
8
+ export declare function getWords(x: string): Array<string>;
@@ -1,16 +1,16 @@
1
- export * from './get-reflect-metadata';
2
- export * from './get-own-reflect-metadata';
3
- export * from './get-words';
4
- export * from './is-arrow-function';
5
- export * from './is-ctor-function';
6
- export * from './is-data-view';
7
- export * from './is-float-32-array';
8
- export * from './is-float-64-array';
9
- export * from './is-int-8-array';
10
- export * from './is-int-16-array';
11
- export * from './is-int-32-array';
12
- export * from './is-uint-8-array';
13
- export * from './is-uint-8-clamped-array';
14
- export * from './is-uint-16-array';
15
- export * from './is-uint-32-array';
16
- export * from './name-of';
1
+ export * from './get-reflect-metadata';
2
+ export * from './get-own-reflect-metadata';
3
+ export * from './get-words';
4
+ export * from './is-arrow-function';
5
+ export * from './is-ctor-function';
6
+ export * from './is-data-view';
7
+ export * from './is-float-32-array';
8
+ export * from './is-float-64-array';
9
+ export * from './is-int-8-array';
10
+ export * from './is-int-16-array';
11
+ export * from './is-int-32-array';
12
+ export * from './is-uint-8-array';
13
+ export * from './is-uint-8-clamped-array';
14
+ export * from './is-uint-16-array';
15
+ export * from './is-uint-32-array';
16
+ export * from './name-of';
@@ -1,8 +1,8 @@
1
- /**
2
- * Checks if value is an arrow function.
3
- *
4
- * @param {any} x Input value.
5
- *
6
- * @returns {boolean} True when value is an arrow function. False otherwise.
7
- */
8
- export declare function isArrowFunction(x: any): x is (...args: Array<any>) => any;
1
+ /**
2
+ * Checks if value is an arrow function.
3
+ *
4
+ * @param {any} x Input value.
5
+ *
6
+ * @returns {boolean} True when value is an arrow function. False otherwise.
7
+ */
8
+ export declare function isArrowFunction(x: any): x is (...args: Array<any>) => any;
@@ -1,8 +1,8 @@
1
- /**
2
- * Checks if value is a constructor function.
3
- *
4
- * @param {any} x Input value.
5
- *
6
- * @returns {boolean} True when value is a constructor function. False otherwise.
7
- */
8
- export declare function isCtorFunction(x: any): x is new (...args: Array<any>) => any;
1
+ /**
2
+ * Checks if value is a constructor function.
3
+ *
4
+ * @param {any} x Input value.
5
+ *
6
+ * @returns {boolean} True when value is a constructor function. False otherwise.
7
+ */
8
+ export declare function isCtorFunction(x: any): x is new (...args: Array<any>) => any;
@@ -1,8 +1,8 @@
1
- /**
2
- * Checks if value is data view.
3
- *
4
- * @param {any} x Input value.
5
- *
6
- * @returns {boolean} True when value is data view. False otherwise.
7
- */
8
- export declare function isDataView(x: any): x is DataView;
1
+ /**
2
+ * Checks if value is data view.
3
+ *
4
+ * @param {any} x Input value.
5
+ *
6
+ * @returns {boolean} True when value is data view. False otherwise.
7
+ */
8
+ export declare function isDataView(x: any): x is DataView;
@@ -1,8 +1,8 @@
1
- /**
2
- * Checks if value is float 32 array.
3
- *
4
- * @param {any} x Input value.
5
- *
6
- * @returns {boolean} True when value is float 32 array. False otherwise.
7
- */
8
- export declare function isFloat32Array(x: any): x is Float32Array;
1
+ /**
2
+ * Checks if value is float 32 array.
3
+ *
4
+ * @param {any} x Input value.
5
+ *
6
+ * @returns {boolean} True when value is float 32 array. False otherwise.
7
+ */
8
+ export declare function isFloat32Array(x: any): x is Float32Array;
@@ -1,8 +1,8 @@
1
- /**
2
- * Checks if value is float 64 array.
3
- *
4
- * @param {any} x Input value.
5
- *
6
- * @returns {boolean} True when value is float 64 array. False otherwise.
7
- */
8
- export declare function isFloat64Array(x: any): x is Float64Array;
1
+ /**
2
+ * Checks if value is float 64 array.
3
+ *
4
+ * @param {any} x Input value.
5
+ *
6
+ * @returns {boolean} True when value is float 64 array. False otherwise.
7
+ */
8
+ export declare function isFloat64Array(x: any): x is Float64Array;
@@ -1,8 +1,8 @@
1
- /**
2
- * Checks if value is int 16 array.
3
- *
4
- * @param {any} x Input value.
5
- *
6
- * @returns {boolean} True when value is int 16 array. False otherwise.
7
- */
8
- export declare function isInt16Array(x: any): x is Int16Array;
1
+ /**
2
+ * Checks if value is int 16 array.
3
+ *
4
+ * @param {any} x Input value.
5
+ *
6
+ * @returns {boolean} True when value is int 16 array. False otherwise.
7
+ */
8
+ export declare function isInt16Array(x: any): x is Int16Array;
@@ -1,8 +1,8 @@
1
- /**
2
- * Checks if value is int 32 array.
3
- *
4
- * @param {any} x Input value.
5
- *
6
- * @returns {boolean} True when value is int 32 array. False otherwise.
7
- */
8
- export declare function isInt32Array(x: any): x is Int32Array;
1
+ /**
2
+ * Checks if value is int 32 array.
3
+ *
4
+ * @param {any} x Input value.
5
+ *
6
+ * @returns {boolean} True when value is int 32 array. False otherwise.
7
+ */
8
+ export declare function isInt32Array(x: any): x is Int32Array;
@@ -1,8 +1,8 @@
1
- /**
2
- * Checks if value is int 8 array.
3
- *
4
- * @param {any} x Input value.
5
- *
6
- * @returns {boolean} True when value is int 8 array. False otherwise.
7
- */
8
- export declare function isInt8Array(x: any): x is Int8Array;
1
+ /**
2
+ * Checks if value is int 8 array.
3
+ *
4
+ * @param {any} x Input value.
5
+ *
6
+ * @returns {boolean} True when value is int 8 array. False otherwise.
7
+ */
8
+ export declare function isInt8Array(x: any): x is Int8Array;
@@ -1,8 +1,8 @@
1
- /**
2
- * Checks if value is uint 16 array.
3
- *
4
- * @param {any} x Input value.
5
- *
6
- * @returns {boolean} True when value is uint 16 array. False otherwise.
7
- */
8
- export declare function isUint16Array(x: any): x is Uint16Array;
1
+ /**
2
+ * Checks if value is uint 16 array.
3
+ *
4
+ * @param {any} x Input value.
5
+ *
6
+ * @returns {boolean} True when value is uint 16 array. False otherwise.
7
+ */
8
+ export declare function isUint16Array(x: any): x is Uint16Array;
@@ -1,8 +1,8 @@
1
- /**
2
- * Checks if value is uint 32 array.
3
- *
4
- * @param {any} x Input value.
5
- *
6
- * @returns {boolean} True when value is uint 32 array. False otherwise.
7
- */
8
- export declare function isUint32Array(x: any): x is Uint32Array;
1
+ /**
2
+ * Checks if value is uint 32 array.
3
+ *
4
+ * @param {any} x Input value.
5
+ *
6
+ * @returns {boolean} True when value is uint 32 array. False otherwise.
7
+ */
8
+ export declare function isUint32Array(x: any): x is Uint32Array;
@@ -1,8 +1,8 @@
1
- /**
2
- * Checks if value is uint 8 array.
3
- *
4
- * @param {any} x Input value.
5
- *
6
- * @returns {boolean} True when value is uint 8 array. False otherwise.
7
- */
8
- export declare function isUint8Array(x: any): x is Uint8Array;
1
+ /**
2
+ * Checks if value is uint 8 array.
3
+ *
4
+ * @param {any} x Input value.
5
+ *
6
+ * @returns {boolean} True when value is uint 8 array. False otherwise.
7
+ */
8
+ export declare function isUint8Array(x: any): x is Uint8Array;
@@ -1,8 +1,8 @@
1
- /**
2
- * Checks if value is uint 8 clamped array.
3
- *
4
- * @param {any} x Input value.
5
- *
6
- * @returns {boolean} True when value is uint 8 clamped array. False otherwise.
7
- */
8
- export declare function isUint8ClampedArray(x: any): x is Uint8ClampedArray;
1
+ /**
2
+ * Checks if value is uint 8 clamped array.
3
+ *
4
+ * @param {any} x Input value.
5
+ *
6
+ * @returns {boolean} True when value is uint 8 clamped array. False otherwise.
7
+ */
8
+ export declare function isUint8ClampedArray(x: any): x is Uint8ClampedArray;
@@ -1,8 +1,8 @@
1
- /**
2
- * Defines name for any value.
3
- *
4
- * @param {any} x Input value.
5
- *
6
- * @returns {boolean} Name when present. Unknown otherwise.
7
- */
8
- export declare function nameOf(x: any): string;
1
+ /**
2
+ * Defines name for any value.
3
+ *
4
+ * @param {any} x Input value.
5
+ *
6
+ * @returns {boolean} Name when present. Unknown otherwise.
7
+ */
8
+ export declare function nameOf(x: any): string;
@@ -1,7 +1,7 @@
1
- import { TypeArgument } from './type-argument';
2
- /**
3
- * Generic argument represents a data which can be passed to define a generic type.
4
- *
5
- * @type {GenericArgument<TType>}
6
- */
7
- export declare type GenericArgument<TType> = TypeArgument<TType> | [TypeArgument<TType>, Array<GenericArgument<any>>];
1
+ import { TypeArgument } from './type-argument';
2
+ /**
3
+ * Generic argument represents a data which can be passed to define a generic type.
4
+ *
5
+ * @type {GenericArgument<TType>}
6
+ */
7
+ export declare type GenericArgument<TType> = TypeArgument<TType> | [TypeArgument<TType>, Array<GenericArgument<any>>];
@@ -1,7 +1,7 @@
1
- import { TypeMetadata } from './type-metadata';
2
- /**
3
- * Generic metadata used to describe a generic type.
4
- *
5
- * @type {GenericMetadata<TType>}
6
- */
7
- export declare type GenericMetadata<TType> = [TypeMetadata<TType>, Array<GenericMetadata<any>>];
1
+ import { TypeMetadata } from './type-metadata';
2
+ /**
3
+ * Generic metadata used to describe a generic type.
4
+ *
5
+ * @type {GenericMetadata<TType>}
6
+ */
7
+ export declare type GenericMetadata<TType> = [TypeMetadata<TType>, Array<GenericMetadata<any>>];
package/index.d.ts CHANGED
@@ -1,54 +1,54 @@
1
- export * from './factories';
2
- export * from './functions';
3
- export * from './injectors';
4
- export * from './naming-conventions';
5
- export * from './reference-handlers';
6
- export * from './serializers';
7
- export * from './alias';
8
- export * from './custom-data';
9
- export * from './default-value-resolver';
10
- export * from './default-value';
11
- export * from './discriminant';
12
- export * from './discriminator';
13
- export * from './factory';
14
- export * from './generic-argument';
15
- export * from './generic-metadata';
16
- export * from './inject-index';
17
- export * from './inject-metadata';
18
- export * from './inject-options';
19
- export * from './inject';
20
- export * from './injector';
21
- export * from './log-level';
22
- export * from './log';
23
- export * from './metadata';
24
- export * from './naming-convention';
25
- export * from './property-metadata';
26
- export * from './property-name';
27
- export * from './property-options';
28
- export * from './property';
29
- export * from './reference-callback';
30
- export * from './reference-handler';
31
- export * from './reference-key';
32
- export * from './reference-value-getter';
33
- export * from './reference-value-setter';
34
- export * from './reference-value';
35
- export * from './serializer-context-options';
36
- export * from './serializer-context';
37
- export * from './serializer';
38
- export * from './type-abstraction';
39
- export * from './type-argument';
40
- export * from './type-context-entry';
41
- export * from './type-context';
42
- export * from './type-ctor';
43
- export * from './type-fn';
44
- export * from './type-like';
45
- export * from './type-manager-options';
46
- export * from './type-manager';
47
- export * from './type-metadata-resolver';
48
- export * from './type-metadata-symbol';
49
- export * from './type-metadata';
50
- export * from './type-name';
51
- export * from './type-options-base';
52
- export * from './type-options';
53
- export * from './type-resolver';
54
- export * from './type';
1
+ export * from './factories';
2
+ export * from './functions';
3
+ export * from './injectors';
4
+ export * from './naming-conventions';
5
+ export * from './reference-handlers';
6
+ export * from './serializers';
7
+ export * from './alias';
8
+ export * from './custom-data';
9
+ export * from './default-value-resolver';
10
+ export * from './default-value';
11
+ export * from './discriminant';
12
+ export * from './discriminator';
13
+ export * from './factory';
14
+ export * from './generic-argument';
15
+ export * from './generic-metadata';
16
+ export * from './inject-index';
17
+ export * from './inject-metadata';
18
+ export * from './inject-options';
19
+ export * from './inject';
20
+ export * from './injector';
21
+ export * from './log-level';
22
+ export * from './log';
23
+ export * from './metadata';
24
+ export * from './naming-convention';
25
+ export * from './property-metadata';
26
+ export * from './property-name';
27
+ export * from './property-options';
28
+ export * from './property';
29
+ export * from './reference-callback';
30
+ export * from './reference-handler';
31
+ export * from './reference-key';
32
+ export * from './reference-value-getter';
33
+ export * from './reference-value-setter';
34
+ export * from './reference-value';
35
+ export * from './serializer-context-options';
36
+ export * from './serializer-context';
37
+ export * from './serializer';
38
+ export * from './type-abstraction';
39
+ export * from './type-argument';
40
+ export * from './type-context-entry';
41
+ export * from './type-context';
42
+ export * from './type-ctor';
43
+ export * from './type-fn';
44
+ export * from './type-like';
45
+ export * from './type-manager-options';
46
+ export * from './type-manager';
47
+ export * from './type-metadata-resolver';
48
+ export * from './type-metadata-symbol';
49
+ export * from './type-metadata';
50
+ export * from './type-name';
51
+ export * from './type-options-base';
52
+ export * from './type-options';
53
+ export * from './type-resolver';
54
+ export * from './type';