import { IntrospectionTypeRef } from 'graphql'; export default function getTypescriptField(fieldName: string, type: IntrospectionTypeRef, { isNull, isList, }: Props): any; interface Props { isNull?: boolean; isList?: boolean; } export {};