monoid
8fece9090f
다시 작업. 디자인도 바꾸고 서버도 바꿈. Co-authored-by: monoid <jaeung@prelude.duckdns.org> Reviewed-on: https://git.prelude.duckdns.org/monoid/ionian/pulls/6
5 lines
237 B
TypeScript
5 lines
237 B
TypeScript
export type JSONPrimitive = null | boolean | number | string;
|
|
export interface JSONMap extends Record<string, JSONType> {}
|
|
export interface JSONArray extends Array<JSONType> {}
|
|
export type JSONType = JSONMap | JSONPrimitive | JSONArray;
|