@adaas/a-concept 0.1.60 → 0.1.61
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/global/A-Meta/A-Meta.decorator.ts +3 -2
- package/tests/A-Meta.test.ts +4 -0
package/dist/index.d.mts
CHANGED
|
@@ -2440,7 +2440,7 @@ declare class A_Meta<_StorageItems extends Record<any, any> = any, _SerializedTy
|
|
|
2440
2440
|
* @param target
|
|
2441
2441
|
* @returns
|
|
2442
2442
|
*/
|
|
2443
|
-
static Define<T extends A_Meta>(target: A_TYPES__Meta_Constructor<T>): (target:
|
|
2443
|
+
static Define<T extends A_Meta>(target: A_TYPES__Meta_Constructor<T>): <TTarget extends A_TYPES__MetaLinkedComponentConstructors>(target: TTarget) => TTarget;
|
|
2444
2444
|
protected meta: Map<keyof _StorageItems, _StorageItems[keyof _StorageItems]>;
|
|
2445
2445
|
/**
|
|
2446
2446
|
* Method to get the iterator for the meta object
|
|
@@ -4136,7 +4136,7 @@ declare class A_ScopeError extends A_Error {
|
|
|
4136
4136
|
*
|
|
4137
4137
|
* @returns
|
|
4138
4138
|
*/
|
|
4139
|
-
declare function A_MetaDecorator<T extends A_Meta>(constructor: new (...args: any[]) => T): (target:
|
|
4139
|
+
declare function A_MetaDecorator<T extends A_Meta>(constructor: new (...args: any[]) => T): <TTarget extends A_TYPES__MetaLinkedComponentConstructors>(target: TTarget) => TTarget;
|
|
4140
4140
|
|
|
4141
4141
|
/**
|
|
4142
4142
|
* A-Dependency require decorator return type
|
package/dist/index.d.ts
CHANGED
|
@@ -2440,7 +2440,7 @@ declare class A_Meta<_StorageItems extends Record<any, any> = any, _SerializedTy
|
|
|
2440
2440
|
* @param target
|
|
2441
2441
|
* @returns
|
|
2442
2442
|
*/
|
|
2443
|
-
static Define<T extends A_Meta>(target: A_TYPES__Meta_Constructor<T>): (target:
|
|
2443
|
+
static Define<T extends A_Meta>(target: A_TYPES__Meta_Constructor<T>): <TTarget extends A_TYPES__MetaLinkedComponentConstructors>(target: TTarget) => TTarget;
|
|
2444
2444
|
protected meta: Map<keyof _StorageItems, _StorageItems[keyof _StorageItems]>;
|
|
2445
2445
|
/**
|
|
2446
2446
|
* Method to get the iterator for the meta object
|
|
@@ -4136,7 +4136,7 @@ declare class A_ScopeError extends A_Error {
|
|
|
4136
4136
|
*
|
|
4137
4137
|
* @returns
|
|
4138
4138
|
*/
|
|
4139
|
-
declare function A_MetaDecorator<T extends A_Meta>(constructor: new (...args: any[]) => T): (target:
|
|
4139
|
+
declare function A_MetaDecorator<T extends A_Meta>(constructor: new (...args: any[]) => T): <TTarget extends A_TYPES__MetaLinkedComponentConstructors>(target: TTarget) => TTarget;
|
|
4140
4140
|
|
|
4141
4141
|
/**
|
|
4142
4142
|
* A-Dependency require decorator return type
|