separate shared types

Co-authored-by: Bill Thornton <thornbill@users.noreply.github.com>
This commit is contained in:
grafixeyehero
2024-02-29 04:22:13 +03:00
parent bbc1860bde
commit 90a1d06557
9 changed files with 17 additions and 12 deletions
+3
View File
@@ -0,0 +1,3 @@
export type NullableString = string | null | undefined;
export type NullableNumber = number | null | undefined;
export type NullableBoolean = boolean | null | undefined;