UNPKG

hama-js

Version:

G2P, phoneme-ASR, and P2G inference for Node, Bun, and browsers, powered by a self-contained WASM engine (no onnxruntime).

7 lines (6 loc) 224 B
export interface JamoSequence { tokens: string[]; originalIndices: number[]; } export declare const splitTextToJamo: (text: string) => JamoSequence; export declare const joinJamoTokens: (tokens: string[]) => string;