1import { IJsPath } from 'awaited-dom/base/AwaitedPath'; 2import IExecJsPathResult from './IExecJsPathResult'; 3 4export default interface IJsPathResult { 5 jsPath: IJsPath; 6 result: IExecJsPathResult<any>; 7 index: number; 8} 9 10