{"version":3,"file":"Maybe.js","sourceRoot":"","sources":["../../src/jsutils/Maybe.ts"],"names":[],"mappings":"","sourcesContent":["/**\n * Conveniently represents flow's \"Maybe\" type https://flow.org/en/docs/types/maybe/\n *\n * @internal\n */\nexport type Maybe<T> = null | undefined | T;\n"]}