ICalleeDataExtractor.d.ts 308 B

123456789101112
  1. import * as ESTree from 'estree';
  2. import { ICalleeData } from './ICalleeData';
  3. export interface ICalleeDataExtractor {
  4. /**
  5. * @param blockScopeBody
  6. * @param callee
  7. * @returns ICalleeData|null
  8. */
  9. extract (blockScopeBody: ESTree.Node[], callee: ESTree.Node): ICalleeData | null;
  10. }