chore: bump version (#3041)

(cherry picked from commit fa1cd87348)
This commit is contained in:
Alex Yang
2023-07-06 11:49:17 +08:00
parent e2d6d5548f
commit aa31043871
44 changed files with 508 additions and 495 deletions
+1 -1
View File
@@ -12,7 +12,7 @@ export type MakeMaybe<T, K extends keyof T> = Omit<T, K> & {
};
export type MakeEmpty<
T extends { [key: string]: unknown },
K extends keyof T
K extends keyof T,
> = { [_ in K]?: never };
export type Incremental<T> =
| T