eslint-plugin-obsidian
Version:
ESLint rules for Obsidian
13 lines • 428 B
TypeScript
import type { TSESTree } from '@typescript-eslint/types';
import { Property } from './property';
interface CallExpression extends TSESTree.CallExpression {
callee: TSESTree.Identifier;
}
export declare class Decorator {
private node;
constructor(node: TSESTree.Decorator);
get expression(): CallExpression;
getProperty(name: string): Property | undefined;
}
export {};
//# sourceMappingURL=decorator.d.ts.map