// An example of using generics in a type union.
// A compact version of my Option<T> type from
// "Typescript Example #1." (https://dev.to/baenencalin/typescript-example-1-ia3).
type Option<T> = T|null;
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)