github-pages-deploy-action/node_modules/graphql/tsutils/Maybe.d.ts

7 lines
256 B
TypeScript
Raw Normal View History

2020-03-07 11:45:40 +08:00
// 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;