ados-rcm 1.1.655 → 1.1.657
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/AModule/AUtils/objF.d.ts +2 -2
- package/dist/index.cjs.js +82 -82
- package/dist/index.es.js +1715 -1706
- package/package.json +1 -1
|
@@ -5,7 +5,7 @@ export interface IObject {
|
|
|
5
5
|
}
|
|
6
6
|
export interface IItem extends IObject {
|
|
7
7
|
}
|
|
8
|
-
export declare const key: (
|
|
8
|
+
export declare const key: (item?: object | string | number | symbol) => string;
|
|
9
9
|
/**
|
|
10
10
|
* objF : object functions
|
|
11
11
|
*/
|
|
@@ -13,7 +13,7 @@ export declare const objF: {
|
|
|
13
13
|
equal: <T extends IObject>(a: T, b: T) => boolean;
|
|
14
14
|
parse: <T>(value: string) => T | undefined;
|
|
15
15
|
stringify: (value: any, indent?: number | string) => string;
|
|
16
|
-
key: (
|
|
16
|
+
key: (item?: object | string | number | symbol) => string;
|
|
17
17
|
keys: <T extends IObject>(obj: T) => (keyof T)[];
|
|
18
18
|
values: <T extends IObject>(obj: T) => T[keyof T][];
|
|
19
19
|
entries: <T extends IObject>(obj: T) => [keyof T, T[keyof T]][];
|