MCPcopy Create free account
hub / github.com/garrytan/gstack / ActivityEntry

Interface ActivityEntry

browse/src/activity.ts:21–35  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

19// ─── Types ──────────────────────────────────────────────────────
20
21export interface ActivityEntry {
22 id: number;
23 timestamp: number;
24 type: 'command_start' | 'command_end' | 'navigation' | 'error';
25 command?: string;
26 args?: string[];
27 url?: string;
28 duration?: number;
29 status?: 'ok' | 'error';
30 error?: string;
31 result?: string;
32 tabs?: number;
33 mode?: string;
34 clientId?: string;
35}
36
37// ─── Buffer & Subscribers ───────────────────────────────────────
38

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected