-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Fix][QA] 전역적으로 단순한 QA(0422) 처리 및 디버깅 #130
Conversation
// height: 1, | ||
// }, | ||
// shadowOpacity: 0.25, | ||
// shadowRadius: 1.84, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
아예 안쓰는 주석이면 없에주세요.
src/types/Feed/Feedinsights.d.ts
Outdated
@@ -16,11 +16,11 @@ export interface InsightData { | |||
writer: InsightWriter; | |||
} | |||
|
|||
interface Link { | |||
export interface Link { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
.d.ts 파일에서는 export를 사용하지 않습니다.
타입선언 전용 파일인데 컴파일러가 이를 인식하여 전역적으로 사용할 수 있도록 바꾸어주기 때문입니다.
export로 변경하며 다른 변경사항들이 있었을꺼같은데 롤백해주셨으면 합니다.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
확인했습니다.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
수고하셨습니다
Fix