import { Plugin } from 'rollup'; import { Types } from '@graphql-codegen/plugin-helpers'; /** * 从 ts 标签字符串中生成类型定义 * @deprecated 已废弃,推荐使用 {@link gql2TsConfig} */ declare const tagStr2DtsConfig: Types.Config; /** * 从 gql 文件中生成类型定义 */ declare const gql2TsConfig: Types.Config; declare function graphQLCodegen(config?: Types.Config): Plugin; export { gql2TsConfig, graphQLCodegen, tagStr2DtsConfig };