본문 바로가기

NodeJS

타입스크립트에서 jwt.verify로 데이터 추출시 에러

반응형
https://velog.io/@zue/does-not-exist-on-type

 

Property 'id' does not exist on type 'string'

'string | JwtPayload' 형식에 'id' 속성이 없습니다.ts(2339)

 

interface IToken {
  id: number;
}
const { id } = data as IToken;

 

반응형