aboutsummaryrefslogtreecommitdiff
path: root/packages/bun-debug-adapter-protocol/protocol/schema.d.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/bun-debug-adapter-protocol/protocol/schema.d.ts')
-rw-r--r--packages/bun-debug-adapter-protocol/protocol/schema.d.ts37
1 files changed, 0 insertions, 37 deletions
diff --git a/packages/bun-debug-adapter-protocol/protocol/schema.d.ts b/packages/bun-debug-adapter-protocol/protocol/schema.d.ts
deleted file mode 100644
index bf6f2d810..000000000
--- a/packages/bun-debug-adapter-protocol/protocol/schema.d.ts
+++ /dev/null
@@ -1,37 +0,0 @@
-export type Protocol = {
- $schema: string;
- title: string;
- description: string;
- type: "object";
- definitions: Record<string, Type>;
-};
-
-export type Type = {
- description?: string;
-} & (
- | {
- type: "number" | "integer" | "boolean";
- }
- | {
- type: "string";
- enum?: string[];
- enumDescriptions?: string[];
- }
- | {
- type: "object";
- properties?: Record<string, Type>;
- required?: string[];
- }
- | {
- type: "array";
- items?: Type;
- }
- | {
- type?: undefined;
- $ref: string;
- }
- | {
- type?: undefined;
- allOf: Type[];
- }
-);