graphiql
Version:
An graphical interactive in-browser GraphQL IDE.
10 lines • 372 B
TypeScript
import { GraphQLArgument } from 'graphql';
import { OnClickTypeFunction } from './types';
declare type ArgumentProps = {
arg: GraphQLArgument;
onClickType: OnClickTypeFunction;
showDefaultValue?: boolean;
};
export default function Argument({ arg, onClickType, showDefaultValue, }: ArgumentProps): JSX.Element;
export {};
//# sourceMappingURL=Argument.d.ts.map