Skip to content

Commit e29a6a3

Browse files
committed
lint/src/util: fix TS2314
Fix error in lint: > lint/src/util/structure.ts:16:20 - error TS2314: Generic type 'RuleMetaData<MessageIds, Options>' requires 2 type argument(s). > > 16 export type Meta = RuleMetaData<string>;
1 parent da1789a commit e29a6a3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lint/src/util/structure.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import {
1313
} from '@typescript-eslint/utils/ts-eslint';
1414
import { EnumType } from 'typescript';
1515

16-
export type Meta = RuleMetaData<string>;
16+
export type Meta = RuleMetaData<string, unknown[]>;
1717
export type Valid = ValidTestCase<unknown[]>;
1818
export type Invalid = InvalidTestCase<string, unknown[]>;
1919

0 commit comments

Comments
 (0)