We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
shouldDrawErrors
tscircuit/soup zod export for trace_error
import { point } from "src/common" import { z } from "zod" export const pcb_trace_error = z .object({ pcb_error_id: z.string(), type: z.literal("pcb_error"), error_type: z.literal("pcb_trace_error"), message: z.string(), center: point.optional(), pcb_trace_id: z.string(), source_trace_id: z.string(), pcb_component_ids: z.array(z.string()), pcb_port_ids: z.array(z.string()), }) .describe("Defines a trace error on the PCB") export type PCBTraceErrorInput = z.input<typeof pcb_trace_error> export type PCBTraceError = z.infer<typeof pcb_trace_error>
The text was updated successfully, but these errors were encountered:
Needed to fix this issue easily in tests: tscircuit/tscircuit#330 (comment)
Sorry, something went wrong.
This might be a duplicate of: Option to render trace_error (e.g. option showErrors: true).
trace_error
showErrors: true
Here are some pull requests that might be helpful reference for this task:
This might have already been done via: updated to circuit-json and added pcb_trace_id to via.
No branches or pull requests
tscircuit/soup zod export for trace_error
The text was updated successfully, but these errors were encountered: