@zayne-labs/toolkit-type-helpers 0.12.42 → 0.12.44
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/esm/index.d.ts +2 -2
- package/package.json +5 -5
package/dist/esm/index.d.ts
CHANGED
|
@@ -21,10 +21,10 @@ type DistributivePick<TObject, TKeysToPick extends keyof TObject> = TObject exte
|
|
|
21
21
|
type NoInferUnMasked<TGeneric> = [TGeneric][TGeneric extends unknown ? 0 : never];
|
|
22
22
|
type NonEmptyArray<TArrayItem> = [TArrayItem, ...TArrayItem[]];
|
|
23
23
|
type UnknownObject = UnmaskType<Record<string, unknown>>;
|
|
24
|
-
type EmptyObject = NonNullable<unknown>;
|
|
25
24
|
type UnknownObjectWithAnyKey = UnmaskType<Record<keyof any, unknown>>;
|
|
26
|
-
type Awaitable<TValue> = Promise<TValue> | TValue;
|
|
27
25
|
type AnyObject = UnmaskType<Record<keyof any, any>>;
|
|
26
|
+
type EmptyObject = NonNullable<unknown>;
|
|
27
|
+
type Awaitable<TValue> = Promise<TValue> | TValue;
|
|
28
28
|
type AnyFunction<TResult = any> = UnmaskType<(...args: any[]) => TResult>;
|
|
29
29
|
type AnyAsyncFunction<TResult = any> = UnmaskType<(...args: any[]) => Promise<TResult>>;
|
|
30
30
|
/**
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zayne-labs/toolkit-type-helpers",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.12.
|
|
4
|
+
"version": "0.12.44",
|
|
5
5
|
"description": "A collection of utility functions, types and composables used by my other projects. Nothing too fancy but can be useful.",
|
|
6
6
|
"author": "Ryan Zayne",
|
|
7
7
|
"license": "MIT",
|
|
@@ -32,16 +32,16 @@
|
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
34
|
"@arethetypeswrong/cli": "^0.18.2",
|
|
35
|
-
"@changesets/cli": "^2.
|
|
35
|
+
"@changesets/cli": "^2.30.0",
|
|
36
36
|
"@size-limit/esbuild-why": "^12.0.0",
|
|
37
37
|
"@size-limit/preset-small-lib": "^12.0.0",
|
|
38
38
|
"@total-typescript/ts-reset": "^0.6.1",
|
|
39
|
-
"@types/node": "^25.
|
|
40
|
-
"@zayne-labs/tsconfig": "0.11.
|
|
39
|
+
"@types/node": "^25.3.3",
|
|
40
|
+
"@zayne-labs/tsconfig": "0.11.30",
|
|
41
41
|
"clsx": "^2.1.1",
|
|
42
42
|
"concurrently": "^9.2.1",
|
|
43
43
|
"cross-env": "^10.1.0",
|
|
44
|
-
"publint": "^0.3.
|
|
44
|
+
"publint": "^0.3.18",
|
|
45
45
|
"size-limit": "^12.0.0",
|
|
46
46
|
"tsdown": "0.20.3",
|
|
47
47
|
"typescript": "5.9.3",
|