@tanstack/eslint-plugin-query 4.24.8 → 5.0.0-alpha.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/.tsbuildinfo +1 -1
- package/build/lib/index.js +3 -3
- package/build/lib/rules/index.d.ts +0 -1
- package/package.json +1 -1
- package/build/lib/rules/prefer-query-object-syntax/prefer-query-object-syntax.d.ts +0 -9
- package/build/lib/rules/prefer-query-object-syntax/prefer-query-object-syntax.test.d.ts +0 -1
|
@@ -1,4 +1,3 @@
|
|
|
1
1
|
export declare const rules: {
|
|
2
2
|
"exhaustive-deps": import("@typescript-eslint/utils/dist/ts-eslint/Rule").RuleModule<string, readonly unknown[], import("@typescript-eslint/utils/dist/ts-eslint/Rule").RuleListener>;
|
|
3
|
-
"prefer-query-object-syntax": import("@typescript-eslint/utils/dist/ts-eslint/Rule").RuleModule<"preferObjectSyntax" | "returnTypeAreNotObjectSyntax", readonly unknown[], import("@typescript-eslint/utils/dist/ts-eslint/Rule").RuleListener>;
|
|
4
3
|
};
|
package/package.json
CHANGED
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import type { TSESLint } from '@typescript-eslint/utils';
|
|
2
|
-
declare const messages: {
|
|
3
|
-
preferObjectSyntax: string;
|
|
4
|
-
returnTypeAreNotObjectSyntax: string;
|
|
5
|
-
};
|
|
6
|
-
declare type MessageKey = keyof typeof messages;
|
|
7
|
-
export declare const name = "prefer-query-object-syntax";
|
|
8
|
-
export declare const rule: TSESLint.RuleModule<MessageKey, readonly unknown[]>;
|
|
9
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|