Skip to content

Commit 450f786

Browse files
committed
Add missing declaration
1 parent 914d95c commit 450f786

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ This package will convert your SRT subtitles on the fly to VTT subtitles.
1212
- Is available as a package (ES module) or as a ready to use script
1313
- No external dependencies
1414
- More functionality included
15+
- TypeScript support
1516

1617
### Installation
1718

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "srt-support-for-html5-videos",
3-
"version": "2.2.6",
3+
"version": "2.2.7",
44
"repository": "https://github.com/codeit-ninja/SRT-Support-for-HTML5-videos",
55
"type": "module",
66
"main": "main.js",

src/track.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import { toVttCue, fetchTrack } from './helpers.js';
2+
import Cue from './cue.js';
23

34
/**
45
* @property {string} src

0 commit comments

Comments
 (0)