Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
ulixee
GitHub Repository: ulixee/secret-agent
Path: blob/main/interfaces/IExecJsPathResult.ts
1028 views
1
import INodePointer from 'awaited-dom/base/INodePointer';
2
import { IJsPathError } from './IJsPathError';
3
4
export default interface IExecJsPathResult<T = any> {
5
value: T;
6
isValueSerialized?: boolean;
7
pathError?: IJsPathError;
8
nodePointer?: INodePointer;
9
}
10
11