FLUJOS/BACK_BACK/node_modules/graphql/jsutils/Maybe.d.ts
2025-11-07 00:06:12 +01:00

2 lines
130 B
TypeScript
Executable file

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