Generics
Last updated
Was this helpful?
Last updated
Was this helpful?
Was this helpful?
TypeScript ⟩ Generic Object Types
/* ------- ⭐️ Generic type alias -------- */
// ⭐️ generic types
type Optional<T> = T | null;
type OneOrMany<T> = T | T[];
type