/** * Phoneme-level timing information. */ export interface PhonemeTimestamps { /** * End times in seconds for each phoneme. */ end: Array; /** * List of phonemes in order. */ phonemes: Array; /** * Start times in seconds for each phoneme. */ start: Array; } /** * Word-level timing information. */ export interface WordTimestamps { /** * End times in seconds for each word. */ end: Array; /** * Start times in seconds for each word. */ start: Array; /** * List of words in order. */ words: Array; } //# sourceMappingURL=shared.d.mts.map