Update definition.d.ts

This commit is contained in:
Orta
2017-11-27 16:10:30 -05:00
committed by GitHub
parent 6377c75303
commit 71c545cfd5

View File

@@ -455,6 +455,7 @@ export class GraphQLEnumType {
constructor(config: GraphQLEnumTypeConfig);
getValues(): GraphQLEnumValue[];
getValue(name: string): GraphQLEnumValue;
isValidValue(value: any): boolean;
serialize(value: any): string;
parseValue(value: any): any;
parseLiteral(valueNode: ValueNode): any;