github-pages-deploy-action/node_modules/graphql/tsutils/Maybe.d.ts
2020-03-06 22:45:40 -05:00

7 lines
256 B
TypeScript

// 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;