Skip to Content
typesMaybe

Maybe

See source on Github

Add undefined onto a T-type. Useful for conciseness in type expressions.

Example

type ProductTitle = string; type ComponentProps = { title: Maybe<ProductTitle> // string | undefined }