summaryrefslogtreecommitdiff
path: root/src/misc/simple-schema.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/misc/simple-schema.ts')
-rw-r--r--src/misc/simple-schema.ts15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/misc/simple-schema.ts b/src/misc/simple-schema.ts
deleted file mode 100644
index abbb348e24..0000000000
--- a/src/misc/simple-schema.ts
+++ /dev/null
@@ -1,15 +0,0 @@
-export interface SimpleSchema {
- type: 'boolean' | 'number' | 'string' | 'array' | 'object' | 'any';
- nullable: boolean;
- optional: boolean;
- items?: SimpleSchema;
- properties?: SimpleObj;
- description?: string;
- example?: any;
- format?: string;
- ref?: string;
- enum?: string[];
- default?: boolean | null;
-}
-
-export interface SimpleObj { [key: string]: SimpleSchema; }