Skip to content

Commit

Permalink
formatbot: Automatically format code
Browse files Browse the repository at this point in the history
  • Loading branch information
tscircuitbot committed Aug 10, 2024
1 parent c30b9fb commit 9fb8fe6
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/pcb/pcb_keepout.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { z } from "zod";
import { point } from "../common";
import { distance } from "../units";
import { z } from "zod"
import { point } from "../common"
import { distance } from "../units"

export const pcb_keepout = z
.object({
Expand All @@ -23,9 +23,9 @@ export const pcb_keepout = z
shape: z.literal("circle"),
center: point,
radius: distance,
})
)
);
}),
),
)

export type PCBKeepoutInput = z.input<typeof pcb_keepout>;
export type PCBKeepout = z.infer<typeof pcb_keepout>;
export type PCBKeepoutInput = z.input<typeof pcb_keepout>
export type PCBKeepout = z.infer<typeof pcb_keepout>

0 comments on commit 9fb8fe6

Please sign in to comment.