-
Notifications
You must be signed in to change notification settings - Fork 1
누락 TSDoc 작성 #1057
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
Merged
Merged
누락 TSDoc 작성 #1057
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
490e29d
docs(TSDoc): 누락 TSDoc 작성
DevHyungJun 3cb71cb
Merge branch 'develop' of https://github.com/find-my-item/FMI-FE into…
DevHyungJun b3ebd8e
docs(TSDoc): TSDoc 설명 줄바꿈
DevHyungJun 5be2e16
docs(TSDoc): 추가 줄바꿈
DevHyungJun bce6ecf
Merge branch 'develop' of https://github.com/find-my-item/FMI-FE into…
DevHyungJun da84971
Merge branch 'develop' into docs/TSDoc
wlrnjs b15dbbe
Merge branch 'develop' into docs/TSDoc
DevHyungJun File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1,10 @@ | ||
| /** | ||
| * 로그인 성공 등 인증 흐름에서 `window`로 주고받는 `CustomEvent` 이름입니다. | ||
| * | ||
| * @author hyungjun | ||
| */ | ||
|
|
||
| /** 이메일·카카오 로그인 등에서 `new CustomEvent(AUTH_LOGIN_SUCCESS_EVENT)`로 발생시키고, | ||
| * SSE 등 후속 연결 로직에서 `addEventListener`로 구독합니다. | ||
| */ | ||
| export const AUTH_LOGIN_SUCCESS_EVENT = "authLoginSuccess"; |
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,2 +1,17 @@ | ||
| /** | ||
| * 기본 지도 중심 좌표·주소 상수 모음입니다. | ||
| * | ||
| * @author hyungjun | ||
| */ | ||
|
|
||
| /** | ||
| * GPS 미허용·복원 전 등 지도 중심이 정해지지 않았을 때 사용하는 기본 좌표(서울 시청 인근). | ||
| * {@link DEFAULT_ADDRESS}와 동일한 행정구역을 가리키도록 맞춘 값입니다. | ||
| */ | ||
| export const DEFAULT_LAT_LNG = { lat: 37.5665, lng: 126.978 }; | ||
|
|
||
| /** | ||
| * {@link DEFAULT_LAT_LNG}에 대응하는 기본 주소 문자열. | ||
| * 검색 UI 플레이스홀더·역지오코딩 전 표시 등에 사용됩니다. | ||
| */ | ||
| export const DEFAULT_ADDRESS = "서울특별시 중구"; | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,2 +1,8 @@ | ||
| /** 메인 지도에서 브라우저 위치 권한이 한 번이라도 성공한 뒤 세션 동안 바텀시트를 생략하기 위한 키 */ | ||
| /** | ||
| * 메인 지도 위치 권한·유도 UI와 연동되는 `sessionStorage` 키 상수입니다. | ||
| * | ||
| * @author hyungjun | ||
| */ | ||
|
|
||
| /** 브라우저에서 위치 권한으로 좌표를 한 번이라도 성공적으로 받았는지 표시할 때 쓰는 `sessionStorage` 키 문자열입니다. */ | ||
|
DevHyungJun marked this conversation as resolved.
|
||
| export const MAIN_GEO_SESSION_KEY = "fmi-main-geolocation-confirmed"; | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1,10 @@ | ||
| /** | ||
| * release 환경의 `window.location.hostname`과 비교할 때 쓰는 호스트명 상수입니다. | ||
| * | ||
| * @author hyungjun | ||
| */ | ||
|
|
||
| /** SSE·채팅 소켓 등에서 로컬과 유사하게 same-origin 프록시를 쓰거나, | ||
| * 개발용 토큰 전달 분기 등에 `window.location.hostname`과 직접 비교합니다. | ||
| */ | ||
| export const RELEASE_HOSTNAME = "finditem-release.vercel.app"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.