UNPKG

@diffusionstudio/core-v4

Version:

2D motion graphics and video rendering engine

11 lines (10 loc) 270 B
import { Timestamp } from '../timestamp'; import { Word } from './word'; export declare class WordGroup { words: Word[]; constructor(words?: Word[]); get duration(): Timestamp; get text(): string; get start(): Timestamp; get stop(): Timestamp; }