Backend half
This commit is contained in:
+4
@@ -0,0 +1,4 @@
|
||||
export type DocumentType = Scalar | Structure | List;
|
||||
type Scalar = string | number | boolean | null;
|
||||
type Structure = { [member: string]: DocumentType };
|
||||
interface List extends Array<DocumentType> {}
|
||||
Reference in New Issue
Block a user