UNPKG

jok

Version:

Bundle of utility functions for code generation related to nodejs and graphql

9 lines (8 loc) 260 B
import { IntrospectionTypeRef } from 'graphql'; export default function getGraphqlTypeString({ type, capitalizeName, onlyName, }: Props): any; interface Props { type: IntrospectionTypeRef; capitalizeName?: boolean; onlyName?: boolean; } export {};