Showing posts with label typescript. Show all posts
Showing posts with label typescript. Show all posts

Wednesday, August 21, 2019

Node.js destructing typescript


아래와 같이 req.body의 userId, contentId, amount를 destructing을 할때 javascript에서는 다음과 같이 했었다.

const { userId, contentId, amount} = req.body 

그러나 우리는 typescript를 사용할 것이므로 userId 등에 각각 정확한 타입을 기입하고 싶을 때는 아래와 같이 하면된다.

const {
userId, contentId, amount
}: {
userId: string, contentId: string, amount: number
} = req.body