corexxx 1.0.52 → 1.0.53

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/dtypes.d.ts CHANGED
@@ -1,6 +1,10 @@
1
1
  export declare type TObject = {
2
2
  [key: string]: any;
3
3
  };
4
+ export declare type TObjectWithId = {
5
+ _id: string;
6
+ [key: string]: any;
7
+ };
4
8
  export declare type TRecord = {
5
9
  [key: string]: string;
6
10
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "corexxx",
3
- "version": "1.0.52",
3
+ "version": "1.0.53",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/src/dtypes.ts CHANGED
@@ -1,4 +1,5 @@
1
1
  export type TObject = { [key: string]: any };
2
+ export type TObjectWithId = { _id: string; [key: string]: any };
2
3
  export type TRecord = { [key: string]: string };
3
4
  export type TObjCalBack = (data: TObject) => void;
4
5
  export type TVoidCalBack = () => void;