Files
crunchy/src/subtitle/formats/index.ts
Roel van Uden 18375d3d22 Update to TS1.5
2015-05-23 19:07:14 +02:00

9 lines
126 B
TypeScript

'use strict';
import ass from './ass';
import srt from './srt';
export default <IFormatterTable> {
ass: ass,
srt: srt
};