mirror of
https://github.com/sst/opencode.git
synced 2025-12-23 10:11:41 +00:00
ignore: rename type
This commit is contained in:
parent
1e24514d61
commit
4994bf1b46
1 changed files with 2 additions and 2 deletions
|
|
@ -8,9 +8,9 @@ const TuiRequest = z.object({
|
|||
body: z.any(),
|
||||
})
|
||||
|
||||
type Request = z.infer<typeof TuiRequest>
|
||||
type TuiRequest = z.infer<typeof TuiRequest>
|
||||
|
||||
const request = new AsyncQueue<Request>()
|
||||
const request = new AsyncQueue<TuiRequest>()
|
||||
const response = new AsyncQueue<any>()
|
||||
|
||||
export async function callTui(ctx: Context) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue