Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
ulixee
GitHub Repository: ulixee/secret-agent
Path: blob/main/replay/shared/interfaces/IHistoryRecord.ts
2659 views
1
export interface IHistoryRecord {
2
id: string;
3
dataLocation: string;
4
sessionName: string;
5
scriptInstanceId: string;
6
scriptEntrypoint: string;
7
firstAccessedAt: string;
8
lastAccessedAt: string;
9
}
10
11