From 9c46a5ce965d843226315b635df3e7e39c63e9a3 Mon Sep 17 00:00:00 2001 From: Abraham Guo Date: Mon, 2 Sep 2024 17:31:09 -0500 Subject: [PATCH] remove deprecation types --- typings/eslint-plugin-deprecation.d.ts | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100644 typings/eslint-plugin-deprecation.d.ts diff --git a/typings/eslint-plugin-deprecation.d.ts b/typings/eslint-plugin-deprecation.d.ts deleted file mode 100644 index 007bdbf2c75b..000000000000 --- a/typings/eslint-plugin-deprecation.d.ts +++ /dev/null @@ -1,12 +0,0 @@ -declare module 'eslint-plugin-deprecation' { - import type { - ClassicConfig, - Linter, - } from '@typescript-eslint/utils/ts-eslint'; - - declare const exprt: { - configs: { recommended: ClassicConfig.Config }; - rules: NonNullable; - }; - export = exprt; -}