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.

10 lines (9 loc) 297 B
import type { TSESLint } from '@typescript-eslint/utils'; export declare const rules: Record<string, TSESLint.RuleModule<string, unknown[]>>; export declare const configs: { recommended: { rules: { 'signature-design/max-duplicate-param-types': string; }; }; };