import { DateTime, u32, Utc, Vec } from "./_commons"; export interface VideoFrag { /** Renamed to video in metroplex */ vid: string; /** The sequence number for this frag */ seq: u32; /** * The time that the frag ended at * Renamed to ended_at in metroplex */ end_at: DateTime; /** * The length of the video frag * Renamed to length in metroplex */ len?: u32; /** * Sequence number of the websocket message, this is unique across video frags and pagevisit parts * Renamed to message_sequence_num in metroplex */ seq_num: u32; /** * CSS URLs present in the video data * Use default here to support older NoibuJS versions that don't send css_urls */ css_urls?: Vec; }