Files
my_site/node_modules/graphql/jsutils/Maybe.d.ts
2026-03-24 14:30:59 +08:00

3 lines
142 B
TypeScript

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