mirror of
https://github.com/antebudimir/eslint-plugin-vanilla-extract.git
synced 2025-12-31 08:53:33 +00:00
11 lines
454 B
TypeScript
11 lines
454 B
TypeScript
|
|
declare module 'eslint-plugin-eslint-plugin' {
|
||
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
||
|
|
const configs: Record<string, any>;
|
||
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
||
|
|
const rules: Record<string, any>;
|
||
|
|
export { configs, rules };
|
||
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
||
|
|
const _default: { configs: Record<string, any>; rules: Record<string, any> };
|
||
|
|
export default _default;
|
||
|
|
}
|