UNPKG

eslint-plugin-signature-design

Version:

ESLint rule to make function signatures better. Currently has only one rule: prevent functions from having too many arguments with the same type.

7 lines (6 loc) 244 B
import { ESLintUtils } from '@typescript-eslint/utils'; type Options = [{ maxOfSameType?: number; }]; declare const _default: ESLintUtils.RuleModule<"tooManyOfSameType", Options, unknown, ESLintUtils.RuleListener>; export default _default;