Current section

Files

Jump to
common_graphql_client priv npm node_modules graphql tsutils Maybe.d.ts
Raw

priv/npm/node_modules/graphql/tsutils/Maybe.d.ts

// Conveniently represents flow's "Maybe" type https://flow.org/en/docs/types/maybe/
type Maybe<T> = null | undefined | T;
// See https://github.com/typescript-eslint/typescript-eslint/issues/131
// eslint-disable-next-line no-undef
export default Maybe;