UNPKG

283 BTypeScriptView Raw
1import { GraphQLError } from '../error/GraphQLError';
2
3/**
4 * Upholds the spec rules about naming.
5 */
6export function assertValidName(name: string): string;
7
8/**
9 * Returns an Error if a name is invalid.
10 */
11export function isValidNameError(name: string): GraphQLError | undefined;