mirror of
https://github.com/JamesIves/github-pages-deploy-action.git
synced 2023-12-15 20:03:39 +08:00
12 lines
318 B
TypeScript
12 lines
318 B
TypeScript
|
import { ASTVisitor } from '../../language/visitor';
|
||
|
import { SDLValidationContext } from '../ValidationContext';
|
||
|
|
||
|
/**
|
||
|
* Unique enum value names
|
||
|
*
|
||
|
* A GraphQL enum type is only valid if all its values are uniquely named.
|
||
|
*/
|
||
|
export function UniqueEnumValueNamesRule(
|
||
|
context: SDLValidationContext,
|
||
|
): ASTVisitor;
|