We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9a501fe commit 416075bCopy full SHA for 416075b
src/models/transcript.ts
@@ -17,7 +17,7 @@ import type { Captions } from '../types';
17
import type { Serializer } from '../services';
18
19
export class Transcript implements Serializer {
20
- public readonly id = crypto.randomUUID();
+ public id = crypto.randomUUID();
21
public language: Language = Language.en;
22
public groups: WordGroup[] = [];
23
src/services/serializer.ts
@@ -4,7 +4,7 @@ export class Serializer {
4
/**
5
* Unique identifier of the object
6
*/
7
8
9
toJSON(): any {
10
const obj: any = {};
0 commit comments