Maybe.d.ts 146 B

1234
  1. // Conveniently represents flow's "Maybe" type https://flow.org/en/docs/types/maybe/
  2. type Maybe<T> = null | undefined | T;
  3. export default Maybe;