()
| 20 | static override flags = { ...apiCommonFlags }; |
| 21 | |
| 22 | async run(): Promise<void> { |
| 23 | const { args, flags } = await this.parse(SessionsDebug); |
| 24 | await withBrowserbaseApi("sessions", async () => { |
| 25 | const client = createBrowserbaseClient(toApiOptions(flags)); |
| 26 | outputJson(await client.sessions.debug(args.id)); |
| 27 | }); |
| 28 | } |
| 29 | } |
nothing calls this directly
no test coverage detected