UNPKG

@palasimi/ipa-cluster

Version:

Cluster words with similar IPA transcriptions together

12 lines 362 B
import { Sound } from "./ir"; /** * A sequence of sounds (IPA segments). * Not the same as a union of sounds. */ export type SequenceSound = string[]; /** * Concatenates any number of sounds. * Returns the array of possible concatenations. */ export declare function concatenate(...sounds: Sound[]): SequenceSound[]; //# sourceMappingURL=operators.d.ts.map