-
Notifications
You must be signed in to change notification settings - Fork 101
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: 패키지가 노출하는 인터페이스를 명확히 하기 위해 index.ts를 named export로 수정합니다 (#157)
* fix: exposing public apis strictly * Create wild-cows-juggle.md
- Loading branch information
Showing
2 changed files
with
26 additions
and
12 deletions.
There are no files selected for viewing
This file contains 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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"es-hangul": patch | ||
--- | ||
|
||
fix: 패키지가 노출하는 인터페이스를 명확히 하기 위해 index.ts를 named export로 수정합니다 |
This file contains 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,12 +1,21 @@ | ||
export * from './assemble'; | ||
export * from './chosungIncludes'; | ||
export * from './combineHangulCharacter'; | ||
export * from './convertQwertyToHangulAlphabet'; | ||
export * from './disassemble'; | ||
export * from './disassembleCompleteHangulCharacter'; | ||
export * from './hangulIncludes'; | ||
export * from './josa'; | ||
export * from './removeLastHangulCharacter'; | ||
export * from './utils'; | ||
export * from './extractHangul'; | ||
export * from './acronymizeHangul'; | ||
export { assembleHangul } from './assemble'; | ||
export { chosungIncludes } from './chosungIncludes'; | ||
export { combineHangulCharacter, combineVowels, curriedCombineHangulCharacter } from './combineHangulCharacter'; | ||
export { convertQwertyToHangul, convertQwertyToHangulAlphabet } from './convertQwertyToHangulAlphabet'; | ||
export { disassembleHangul, disassembleHangulToGroups } from './disassemble'; | ||
export { disassembleCompleteHangulCharacter } from './disassembleCompleteHangulCharacter'; | ||
export { hangulIncludes } from './hangulIncludes'; | ||
export { josa } from './josa'; | ||
export { removeLastHangulCharacter } from './removeLastHangulCharacter'; | ||
export { | ||
canBeChosung, | ||
canBeJongsung, | ||
canBeJungsung, | ||
getChosung, | ||
hasBatchim, | ||
hasProperty, | ||
hasSingleBatchim, | ||
hasValueInReadOnlyStringList, | ||
} from './utils'; | ||
export { extractHangul } from './extractHangul'; | ||
export { acronymizeHangul } from './acronymizeHangul'; |