Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
ulixee
GitHub Repository: ulixee/secret-agent
Path: blob/main/interfaces/IJsPathResult.ts
1028 views
1
import { IJsPath } from 'awaited-dom/base/AwaitedPath';
2
import IExecJsPathResult from './IExecJsPathResult';
3
4
export default interface IJsPathResult {
5
jsPath: IJsPath;
6
result: IExecJsPathResult<any>;
7
index: number;
8
}
9
10