hangul-romanize
Version:
Romanize Hangul
12 lines (11 loc) • 313 B
TypeScript
import { Romanize } from "./Romanize";
import { Format } from "./constants";
export * from './constants';
export * from './interfaces';
export * from './types';
export * from './Romanize';
declare const HangulRomanize: {
Romanize: typeof Romanize;
Format: typeof Format;
};
export default HangulRomanize;