UNPKG

417 BTypeScriptView Raw
1import { TypeScriptCommonConfig } from 'graphql-codegen-typescript-common';
2import { PluginFunction, PluginValidateFn } from 'graphql-codegen-core';
3export interface TypeScriptStencilApolloConfig extends TypeScriptCommonConfig {
4 noGraphqlTag?: boolean;
5 noNamespaces?: boolean;
6}
7export declare const plugin: PluginFunction<TypeScriptStencilApolloConfig>;
8export declare const validate: PluginValidateFn<any>;