isValidJSValue.d.ts 251 B

12345678
  1. import { GraphQLInputType } from '../type/definition';
  2. /**
  3. * Deprecated. Use coerceValue() directly for richer information.
  4. *
  5. * This function will be removed in v15
  6. */
  7. export function isValidJSValue(value: any, type: GraphQLInputType): string[];