UNPKG

@graphql-tools/webpack-loader

Version:

A set of utils for faster development of GraphQL tools

12 lines (11 loc) 331 B
import type { LoaderContext } from 'webpack'; interface Options { noDescription?: boolean; noEmptyNodes?: boolean; noLoc?: boolean; replaceKinds?: boolean; esModule?: boolean; importHelpers?: boolean; } export default function graphqlLoader(this: LoaderContext<Options>, source: string): string; export {};