Skip to content

Commit 80ae1c8

Browse files
committed
✨ models: Add start and end for DialogueElement
1 parent 119fb94 commit 80ae1c8

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

lib/transcribe.ts

+2
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,8 @@ type Word = {
5656
type DialogueElement = {
5757
speaker: number;
5858
text: string;
59+
start: number;
60+
end: number;
5961
};
6062

6163
export class Transcription implements Promise<string> {

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "polyfire-js",
3-
"version": "0.2.51",
3+
"version": "0.2.52",
44
"main": "index.js",
55
"types": "index.d.ts",
66
"author": "Lancelot Owczarczak <[email protected]>",

0 commit comments

Comments
 (0)