We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 73a3932 commit 940016dCopy full SHA for 940016d
2 files changed
package.json
@@ -1,7 +1,7 @@
1
{
2
"type": "module",
3
"name": "@stackpress/lib",
4
- "version": "0.5.19",
+ "version": "0.5.22",
5
"license": "Apache-2.0",
6
"description": "Shared library used across stackpress projects",
7
"author": "Chris <chris@incept.asia>",
src/types.ts
@@ -21,7 +21,7 @@ export type TypeOf<T> = T extends number
21
: T extends undefined
22
? any
23
: T extends null
24
- ? unknown
+ ? null
25
: T;
26
27
export type Key = string|number;
0 commit comments