separate shared types
Co-authored-by: Bill Thornton <thornbill@users.noreply.github.com>
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
export type NullableString = string | null | undefined;
|
||||
export type NullableNumber = number | null | undefined;
|
||||
export type NullableBoolean = boolean | null | undefined;
|
||||
Reference in New Issue
Block a user