preeti2unicode
Version:
Convert Preeti, PCS Nepali, and Kantipur fonts to Unicode
17 lines (14 loc) • 397 B
TypeScript
export * from './react-hook';
declare class FontConverter {
constructor(fontName: string);
convert(text: string): string;
}
declare function preetiToUnicode(text: string): string;
declare function pcsToUnicode(text: string): string;
declare function kantipurToUnicode(text: string): string;
export {
FontConverter,
preetiToUnicode,
pcsToUnicode,
kantipurToUnicode
};