eslint-plugin-obsidian
Version:
ESLint rules for Obsidian
14 lines • 396 B
TypeScript
import type { TSESTree } from '@typescript-eslint/types';
import type { Context } from '../../dto/context';
type Report = {
isError: boolean;
path?: string[];
node?: TSESTree.Node;
};
export declare class ErrorReporter {
private context;
constructor(context: Context);
report({ isError, path, node }: Report): void;
}
export {};
//# sourceMappingURL=errorReporter.d.ts.map