Files
photography_form_worker/node_modules/graphql/jsutils/Maybe.d.ts
2025-05-15 13:32:55 +10: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;