chore(packages/client)!: rewrite and rename package

This commit is contained in:
PalmDevs
2023-11-24 23:03:56 +07:00
parent abf532704f
commit ab44312e7b
8 changed files with 1068 additions and 0 deletions

1
packages/api/utility-types.d.ts vendored Executable file
View File

@@ -0,0 +1 @@
type RequiredProperty<T> = { [P in keyof T]: Required<NonNullable<T[P]>>; };