graphql/graphql-js
src/
jsutils/
PromiseOrValue.ts
/** @internal */ export type PromiseOrValue<T> = Promise<T> | T;