chore: generate

This commit is contained in:
opencode-agent[bot]
2026-04-17 01:36:45 +00:00
parent f13778215a
commit 5b9fa32255
+1 -3
View File
@@ -18,9 +18,7 @@ export const Entry = z.union([
}), }),
]) ])
export const Info = z export const Info = z.union([z.literal(false), z.record(z.string(), Entry)]).refine(
.union([z.literal(false), z.record(z.string(), Entry)])
.refine(
(data) => { (data) => {
if (typeof data === "boolean") return true if (typeof data === "boolean") return true
const serverIds = new Set(Object.values(LSPServer).map((server) => server.id)) const serverIds = new Set(Object.values(LSPServer).map((server) => server.id))