UNPKG

jok

Version:

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

6 lines (5 loc) 205 B
export default function ({ hasProps }: Props): "\n\t\treturn {\n\t\t\tquery,\n\t\t\tvariables: props,\n\t\t}" | "\n\t\treturn {\n\t\t\tquery,\n\t\t}"; interface Props { hasProps: boolean; } export {};