써먹는 웹개발
[Node] 인터페이스를 객체 생성하여 사용하기 본문
728x90
반응형
인터페이스를 객체 생성하여 사용하기
- 인터페이스
interface IRequest {
id: number; userId: number; interfaceYn: string; } |
- 객체 생성
const iRequest: IRequest = {
id: 1, userId: 2, interfaceYn: 'Y' }; |
728x90
반응형
'Server > Node.js' 카테고리의 다른 글
[Node.js] 무료 배포 서버인 cloudtype 배포방법 (0) | 2023.03.24 |
---|---|
[Node.js] 동기처리 안되는 현상 수정 (0) | 2023.03.07 |
[Node] 에러 메시지 별 해결한 방법 (오타가 원인) (0) | 2023.01.26 |
[Node] 'MongoError: bad auth : Authentication failed' 에러 해결방법 (0) | 2021.04.25 |
[Node] 에러메시지 - npm ERR! Unexpected end of JSON input while parsing near '...c...' (0) | 2021.04.23 |
Comments