From e29a6a3c0a702b45ce30c16a8803359b62183e71 Mon Sep 17 00:00:00 2001 From: Alan Orth Date: Wed, 4 Sep 2024 09:43:48 +0300 Subject: [PATCH] lint/src/util: fix TS2314 Fix error in lint: > lint/src/util/structure.ts:16:20 - error TS2314: Generic type 'RuleMetaData' requires 2 type argument(s). > > 16 export type Meta = RuleMetaData; --- lint/src/util/structure.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lint/src/util/structure.ts b/lint/src/util/structure.ts index 13b2ef322b..2e3aebd9ab 100644 --- a/lint/src/util/structure.ts +++ b/lint/src/util/structure.ts @@ -13,7 +13,7 @@ import { } from '@typescript-eslint/utils/ts-eslint'; import { EnumType } from 'typescript'; -export type Meta = RuleMetaData; +export type Meta = RuleMetaData; export type Valid = ValidTestCase; export type Invalid = InvalidTestCase;