1 | import { PluginValidateFn, PluginFunction } from '@graphql-codegen/plugin-helpers';
|
2 | import { RawClientSideBasePluginConfig } from '@graphql-codegen/visitor-plugin-common';
|
3 | import { GraphQLRequestVisitor } from './visitor';
|
4 | export interface Config extends RawClientSideBasePluginConfig {
|
5 | handlerPath?: string;
|
6 | }
|
7 | export interface Info {
|
8 | outputFile: string;
|
9 | allPlugins: any[];
|
10 | }
|
11 | export declare const plugin: PluginFunction;
|
12 | export declare const validate: PluginValidateFn<any>;
|
13 | export { GraphQLRequestVisitor };
|