Skip to content

Commit 9f1da6b

Browse files
committed
chore: fix types
1 parent 35742d4 commit 9f1da6b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/endpoint.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ describe("types", async () => {
143143
"/path",
144144
{
145145
method: "POST",
146-
body: z.record(z.string()),
146+
body: z.record(z.string(), z.string()),
147147
metadata: {
148148
$Infer: {
149149
body: {} as {
@@ -206,7 +206,7 @@ describe("types", async () => {
206206
"/path",
207207
{
208208
method: "POST",
209-
body: z.record(z.string()),
209+
body: z.record(z.string(), z.string()),
210210
metadata: {
211211
$Infer: {
212212
query: {} as {

0 commit comments

Comments
 (0)