@augment-vir/common 6.1.5 → 6.2.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.
@@ -1,4 +1,4 @@
1
- import { AnyFunction } from '@augment-vir/common';
1
+ import { AnyFunction } from './function';
2
2
  declare function getTypeOf(x: any): "string" | "number" | "bigint" | "boolean" | "symbol" | "undefined" | "object" | "function";
3
3
  export type TypeOf = ReturnType<typeof getTypeOf>;
4
4
  export type TypeOfWithArray = TypeOf | 'array';
@@ -8,7 +8,7 @@ export type TypeOfMapping = {
8
8
  boolean: boolean;
9
9
  function: AnyFunction;
10
10
  number: number;
11
- object: object;
11
+ object: Record<PropertyKey, unknown>;
12
12
  string: string;
13
13
  symbol: symbol;
14
14
  undefined: undefined;
@@ -1,4 +1,4 @@
1
- import { AnyFunction } from '@augment-vir/common';
1
+ import { AnyFunction } from './function';
2
2
  declare function getTypeOf(x: any): "string" | "number" | "bigint" | "boolean" | "symbol" | "undefined" | "object" | "function";
3
3
  export type TypeOf = ReturnType<typeof getTypeOf>;
4
4
  export type TypeOfWithArray = TypeOf | 'array';
@@ -8,7 +8,7 @@ export type TypeOfMapping = {
8
8
  boolean: boolean;
9
9
  function: AnyFunction;
10
10
  number: number;
11
- object: object;
11
+ object: Record<PropertyKey, unknown>;
12
12
  string: string;
13
13
  symbol: symbol;
14
14
  undefined: undefined;
@@ -1,4 +1,4 @@
1
- import { AnyFunction } from '@augment-vir/common';
1
+ import { AnyFunction } from './function';
2
2
  declare function getTypeOf(x: any): "string" | "number" | "bigint" | "boolean" | "symbol" | "undefined" | "object" | "function";
3
3
  export type TypeOf = ReturnType<typeof getTypeOf>;
4
4
  export type TypeOfWithArray = TypeOf | 'array';
@@ -8,7 +8,7 @@ export type TypeOfMapping = {
8
8
  boolean: boolean;
9
9
  function: AnyFunction;
10
10
  number: number;
11
- object: object;
11
+ object: Record<PropertyKey, unknown>;
12
12
  string: string;
13
13
  symbol: symbol;
14
14
  undefined: undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@augment-vir/common",
3
- "version": "6.1.5",
3
+ "version": "6.2.0",
4
4
  "homepage": "https://github.com/electrovir/augment-vir/tree/main/packages/common",
5
5
  "bugs": {
6
6
  "url": "https://github.com/electrovir/augment-vir/issues"
@@ -22,10 +22,10 @@
22
22
  "test": "echo \"use common-test to run tests\" && exit 0"
23
23
  },
24
24
  "dependencies": {
25
- "type-fest": "^3.3.0"
25
+ "type-fest": "^3.4.0"
26
26
  },
27
27
  "devDependencies": {
28
- "typescript": "^4.9.3"
28
+ "typescript": "^4.9.4"
29
29
  },
30
30
  "publishConfig": {
31
31
  "access": "public"