@nxtedition/types 23.0.31 → 23.0.32

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -100,6 +100,10 @@ export interface MediaProbeRecord {
100
100
  error: NxtError | null;
101
101
  type: MediaType;
102
102
  live?: boolean | null;
103
+ url?: string | null;
104
+ subtitle?: {
105
+ codec?: string | null;
106
+ };
103
107
  }
104
108
  export declare const isMediaProbeRecord: (input: unknown) => input is MediaProbeRecord;
105
109
  export declare const assertMediaProbeRecord: (input: unknown) => MediaProbeRecord;