github-pages-deploy-action/node_modules/graphql/jsutils/PromiseOrValue.js.flow

4 lines
66 B
Plaintext
Raw Normal View History

2020-03-07 11:45:40 +08:00
// @flow strict
export type PromiseOrValue<+T> = Promise<T> | T;