@veltdev/types
Version:
Velt is an SDK to add collaborative features to your product within minutes. Example: Comments like Figma, Frame.io, Google docs or sheets, Recording like Loom, Huddles like Slack and much more.
36 lines (35 loc) • 699 B
TypeScript
import { User } from "./user.data.model";
export declare class Transcription {
/**
* User who created the transcription
*/
from: User;
/**
* Timestamp of when the transcription was created
*/
lastUpdated?: number;
/**
* Bucket path of the srt file
*/
srtBucketPath?: string;
/**
* Srt file url
*/
srtUrl?: string;
/**
* Transcripted text
*/
transcriptedText?: string;
/**
* Time taken in ms to transcribe the recording
*/
transcriptionLatency?: number;
/**
* Bucket path of the vtt file
*/
vttBucketPath?: string;
/**
* Vtt file url
*/
vttUrl?: string;
}