Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
ulixee
GitHub Repository: ulixee/secret-agent
Path: blob/main/core/interfaces/ICommandWithResult.ts
1029 views
1
export default interface ICommandWithResult {
2
id: number;
3
tabId: number;
4
frameId: number;
5
label: string;
6
name: string;
7
args?: string;
8
startDate: number;
9
endDate?: number;
10
duration: number;
11
isError: boolean;
12
result: any;
13
resultType?: string;
14
frameIdPath?: string;
15
resultNodeIds?: number[];
16
resultNodeType?: string;
17
failedJsPathStepIndex?: number;
18
failedJsPathStep?: string;
19
}
20
21