github-pages-deploy-action/node_modules/graphql/jsutils/PromiseOrValue.js.flow
2020-03-06 22:45:40 -05:00

4 lines
66 B
Plaintext

// @flow strict
export type PromiseOrValue<+T> = Promise<T> | T;