/** * Represents a value that may be `null` or `undefined`. */ type Maybe = T | null | undefined; export { Maybe as M };