UNPKG

jok

Version:

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

11 lines (10 loc) 310 B
import { RootType } from '../../utils/rootType'; export default function ({ rootType, hasVariables, queryName, returnType, isWatchQuery, }: Props): string; interface Props { rootType: RootType; hasVariables: boolean; queryName: string; returnType: any; isWatchQuery?: boolean; } export {};