Skip to content

Commit 9a0ca9b

Browse files
vojtyTkDodo
andauthored
fix(eslint-plugin-query): export Plugin interface (TanStack#8392)
Co-authored-by: Dominik Dorfmeister <[email protected]>
1 parent c91c590 commit 9a0ca9b

File tree

1 file changed

+1
-1
lines changed
  • packages/eslint-plugin-query/src

1 file changed

+1
-1
lines changed

packages/eslint-plugin-query/src/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import type { RuleModule } from '@typescript-eslint/utils/ts-eslint'
44

55
type RuleKey = keyof typeof rules
66

7-
interface Plugin extends Omit<ESLint.Plugin, 'rules'> {
7+
export interface Plugin extends Omit<ESLint.Plugin, 'rules'> {
88
rules: Record<RuleKey, RuleModule<any, any, any>>
99
configs: {
1010
recommended: ESLint.ConfigData

0 commit comments

Comments
 (0)