Remove unneeded DynamicJsonForm.tsx
This commit is contained in:
@@ -1,18 +0,0 @@
|
||||
// Mock for DynamicJsonForm that only exports the types needed for tests
|
||||
export type JsonValue =
|
||||
| string
|
||||
| number
|
||||
| boolean
|
||||
| null
|
||||
| JsonValue[]
|
||||
| { [key: string]: JsonValue };
|
||||
|
||||
export type JsonSchemaType = {
|
||||
type: "string" | "number" | "integer" | "boolean" | "array" | "object";
|
||||
description?: string;
|
||||
properties?: Record<string, JsonSchemaType>;
|
||||
items?: JsonSchemaType;
|
||||
};
|
||||
|
||||
// Default export is not used in the tests
|
||||
export default {};
|
||||
Reference in New Issue
Block a user