mirror of
https://github.com/n8n-io/n8n
synced 2026-05-10 13:32:23 +02:00
20 lines
369 B
TypeScript
20 lines
369 B
TypeScript
declare module 'eslint-plugin-n8n-nodes-base' {
|
|
import type { ESLint } from 'eslint';
|
|
|
|
const plugin: ESLint.Plugin & {
|
|
configs: {
|
|
community: {
|
|
rules: Record<string, Linter.RuleEntry>;
|
|
};
|
|
credentials: {
|
|
rules: Record<string, Linter.RuleEntry>;
|
|
};
|
|
nodes: {
|
|
rules: Record<string, Linter.RuleEntry>;
|
|
};
|
|
};
|
|
};
|
|
|
|
export default plugin;
|
|
}
|