Skip to content

Commit

Permalink
✨ models: Add start and end for DialogueElement
Browse files Browse the repository at this point in the history
  • Loading branch information
lowczarc committed Feb 15, 2024
1 parent 119fb94 commit 80ae1c8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions lib/transcribe.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,8 @@ type Word = {
type DialogueElement = {
speaker: number;
text: string;
start: number;
end: number;
};

export class Transcription implements Promise<string> {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "polyfire-js",
"version": "0.2.51",
"version": "0.2.52",
"main": "index.js",
"types": "index.d.ts",
"author": "Lancelot Owczarczak <lancelot@owczarczak.fr>",
Expand Down

0 comments on commit 80ae1c8

Please sign in to comment.