@graphql-eslint/eslint-plugin
Version:
GraphQL plugin for ESLint
12 lines (11 loc) • 333 B
TypeScript
import { GraphQLESLintRule } from '../types';
export declare type StrictIdInTypesRuleConfig = {
acceptedIdNames?: string[];
acceptedIdTypes?: string[];
exceptions?: {
types?: string[];
suffixes?: string[];
};
};
declare const rule: GraphQLESLintRule<[StrictIdInTypesRuleConfig]>;
export default rule;