Nullable
Transforms a type into a nullable type.
Usage
type A = Nullable<string>; // string | nullInstallation
npx atmx add type nullableCopy and paste the following method into @/utils/helpers/undefined.ts:
/*** Transforms a type into a nullable type.** @example* type A = Nullable<string> // string | null*/export type Nullable<T> = T | null;