memo

```typescript
type JsonObject = { [ index: string ]: JsonValueTypes }
type JsonValueTypes = JsonObject | Array<any> | number | string | true | false | null;
type JsonType = JsonValueTypes;

const obj: JsonType = {
"foo": {
"bar": true
}
}
```

ログインして会話に参加
:realtek:

思考の /dev/null