Skip to content

Commit

Permalink
feat: better type
Browse files Browse the repository at this point in the history
  • Loading branch information
star0202 committed Jul 6, 2023
1 parent 023a254 commit ecb28e7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/types/params/SchoolInfo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export interface SchoolInfoParam extends DefaultParam {
/** 학교명 */
readonly SCHUL_NM?: string
/** 학교종류명 */
readonly SCHUL_KND_SC_NM?: string
readonly SCHUL_KND_SC_NM?: '초등학교' | '중학교' | '고등학교' | '특수학교'
/** 소재지명 */
readonly LCTN_SC_NM?: string
/** 설립명 */
Expand Down
2 changes: 1 addition & 1 deletion src/types/responses/SchoolInfo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export interface SchoolInfoResponse extends BaseSchoolResponse {
/** 영문학교명 */
readonly ENG_SCHUL_NM: string
/** 학교종류명 */
readonly SCHUL_KND_SC_NM: string
readonly SCHUL_KND_SC_NM: '초등학교' | '중학교' | '고등학교' | '특수학교'
/** 소재지명 */
readonly LCTN_SC_NM: string
/** 관할조직명 */
Expand Down

0 comments on commit ecb28e7

Please sign in to comment.