@graphql-eslint/eslint-plugin 3.13.0-alpha-20221024000319-1089aa0 → 3.13.0-alpha-20221031222216-429ecf4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/schema.d.ts +0 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@graphql-eslint/eslint-plugin",
3
- "version": "3.13.0-alpha-20221024000319-1089aa0",
3
+ "version": "3.13.0-alpha-20221031222216-429ecf4",
4
4
  "description": "GraphQL plugin for ESLint",
5
5
  "sideEffects": false,
6
6
  "peerDependencies": {
package/schema.d.ts CHANGED
@@ -1,6 +1,3 @@
1
- import { GraphQLSchema } from 'graphql';
2
1
  import { GraphQLProjectConfig } from 'graphql-config';
3
2
  import { ParserOptions, Schema } from './types';
4
- import { ModuleCache } from './cache';
5
- export declare const schemaCache: ModuleCache<Error | GraphQLSchema, any>;
6
3
  export declare function getSchema(project: GraphQLProjectConfig, schemaOptions?: ParserOptions['schemaOptions']): Schema;