@romanize/korean
Version:
Romanize Korean Hangul
11 lines (10 loc) • 301 B
TypeScript
declare enum RomanizationSystem {
REVISED = "RR",
MCCUNE = "MR",
YALE = "YL"
}
interface RomanizationOptions {
system: RomanizationSystem;
}
declare function romanize(hangul: string, romanizationOptions?: RomanizationOptions): string;
export { romanize, RomanizationSystem, RomanizationOptions };