9 lines
251 B
TypeScript
9 lines
251 B
TypeScript
import { GraphQLInputType } from '../type/definition';
|
|
|
|
/**
|
|
* Deprecated. Use coerceValue() directly for richer information.
|
|
*
|
|
* This function will be removed in v15
|
|
*/
|
|
export function isValidJSValue(value: any, type: GraphQLInputType): string[];
|