chore: generate

This commit is contained in:
opencode-agent[bot]
2026-05-22 18:25:01 +00:00
parent 5f42351159
commit 1857c73565
3 changed files with 13 additions and 7 deletions

View File

@@ -110,7 +110,10 @@ export interface Interface {
id: PtyID,
ws: Socket,
cursor?: number,
) => Effect.Effect<{ onMessage: (message: string | ArrayBuffer) => void; onClose: () => void } | undefined, NotFoundError>
) => Effect.Effect<
{ onMessage: (message: string | ArrayBuffer) => void; onClose: () => void } | undefined,
NotFoundError
>
}
export class Service extends Context.Service<Service, Interface>()("@opencode/Pty") {}