JI23

Results 4 issues of JI23

## Types of changes - [ ] Bug fixes - resolves # - [x] Features - resolves #117 - [ ] Maintenance - [ ] Documentation ## Changes - Add...

feature

## Description 第三引数のbodyの型の入力補完が効かない ![](https://cdn.discordapp.com/attachments/930543263901966426/948596198917410836/2022-03-02_23.50.17.png) ## Environment 以下再現リポジトリを参照。 https://github.com/IshinoJun/test-aspida - **Package version:** `vX.X.X` - **OS:** - [ ] Linux - [ ] Windows - [x] macOS - **Node.js version:** `v16.13.2` -...

priority/2

## Types of changes - [x] Bug fixes - resolves #359 - [ ] Features - resolves # - [ ] Maintenance - [ ] Documentation ## Changes - expressのquery...

Ref.https://github.com/frouriojs/create-frourio-app/pull/355 Ref.https://github.com/aspida/aspida/pull/752 ## Description express はデフォルトで下記 の key から `[]` を取り外して queryを生成してしまいます ``` ?ids[]=1&ids[]=2 ``` aspidaは取り外しされることは期待していないので、`query parser`を`simple`に設定します https://expressjs.com/en/api.html#app.settings.table Expected ``` { ids: [ '1', '2' ] } ``` Actual ```...

priority/1