federation/gateway/node_modules/graphql/jsutils/Maybe.d.ts
2020-11-14 16:43:58 +01:00

2 lines
130 B
TypeScript

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