UNPKG

eslint-plugin-obsidian

Version:

ESLint rules for Obsidian

14 lines 517 B
import type { TSESTree } from '@typescript-eslint/types'; import { Identifier } from './identifier'; import { Generics } from './generics'; export declare class CallExpression { readonly node: TSESTree.CallExpression; constructor(node: TSESTree.CallExpression); isExpression(name: string): boolean; get name(): string; get parent(): TSESTree.Node; get arguments(): Identifier[]; get generics(): Generics | undefined; private get callee(); } //# sourceMappingURL=callExpression.d.ts.map