@adaas/a-concept 0.1.35 → 0.1.36
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.d.mts
CHANGED
|
@@ -2387,7 +2387,7 @@ declare class A_Fragment<_MetaItems extends Record<string, any> = any, _Serializ
|
|
|
2387
2387
|
* }
|
|
2388
2388
|
* ```
|
|
2389
2389
|
*/
|
|
2390
|
-
get
|
|
2390
|
+
get(param: keyof _MetaItems): _MetaItems[typeof param] | undefined;
|
|
2391
2391
|
/**
|
|
2392
2392
|
* Stores a value in the fragment's meta.
|
|
2393
2393
|
*
|
|
@@ -2400,7 +2400,7 @@ declare class A_Fragment<_MetaItems extends Record<string, any> = any, _Serializ
|
|
|
2400
2400
|
* fragment.set('role', 'admin');
|
|
2401
2401
|
* ```
|
|
2402
2402
|
*/
|
|
2403
|
-
set
|
|
2403
|
+
set(param: keyof _MetaItems, value: _MetaItems[typeof param]): void;
|
|
2404
2404
|
/**
|
|
2405
2405
|
* Removes a specific key from the fragment's meta.
|
|
2406
2406
|
*
|
package/dist/index.d.ts
CHANGED
|
@@ -2387,7 +2387,7 @@ declare class A_Fragment<_MetaItems extends Record<string, any> = any, _Serializ
|
|
|
2387
2387
|
* }
|
|
2388
2388
|
* ```
|
|
2389
2389
|
*/
|
|
2390
|
-
get
|
|
2390
|
+
get(param: keyof _MetaItems): _MetaItems[typeof param] | undefined;
|
|
2391
2391
|
/**
|
|
2392
2392
|
* Stores a value in the fragment's meta.
|
|
2393
2393
|
*
|
|
@@ -2400,7 +2400,7 @@ declare class A_Fragment<_MetaItems extends Record<string, any> = any, _Serializ
|
|
|
2400
2400
|
* fragment.set('role', 'admin');
|
|
2401
2401
|
* ```
|
|
2402
2402
|
*/
|
|
2403
|
-
set
|
|
2403
|
+
set(param: keyof _MetaItems, value: _MetaItems[typeof param]): void;
|
|
2404
2404
|
/**
|
|
2405
2405
|
* Removes a specific key from the fragment's meta.
|
|
2406
2406
|
*
|