Skip to content

Commit 4994bf1

Browse files
committed
ignore: rename type
1 parent 1e24514 commit 4994bf1

File tree

1 file changed

+2
-2
lines changed
  • packages/opencode/src/server

1 file changed

+2
-2
lines changed

packages/opencode/src/server/tui.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ const TuiRequest = z.object({
88
body: z.any(),
99
})
1010

11-
type Request = z.infer<typeof TuiRequest>
11+
type TuiRequest = z.infer<typeof TuiRequest>
1212

13-
const request = new AsyncQueue<Request>()
13+
const request = new AsyncQueue<TuiRequest>()
1414
const response = new AsyncQueue<any>()
1515

1616
export async function callTui(ctx: Context) {

0 commit comments

Comments
 (0)