UNPKG

@openanime/ass2esl

Version:

Utilities to convert Advanced SubStation Alpha (ASS) to Expressive Subtitle Language (ESL)

7 lines (6 loc) 122 B
export class IdGenerator { private motionID: number = 0; next(): number { return this.motionID++; } }