Skip to content

Commit

Permalink
Merge pull request #10 from nomalab/update_types
Browse files Browse the repository at this point in the history
Update Types.
  • Loading branch information
Sébastien Crème authored Jan 11, 2023
2 parents bfa5d1b + f84f50c commit 29fc20d
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export interface Show {
channels: unknown[];
invitations: unknown[];
timeline: unknown[];
extras: unknown[];
extras: File[];
activeBroadcastable: ActiveBroadcastable;
previousBroadcastables: unknown[];
}
Expand Down Expand Up @@ -81,6 +81,11 @@ export interface Material extends FileWrapper {
deliveries: Delivery[];
segments: Segment[];
}
export interface Material extends File {
reportXml: FileClass;
reportPdf: FileClass;
deliveries: Delivery[];
}

export interface Container {
fileId: string;
Expand Down Expand Up @@ -479,7 +484,8 @@ export interface PurpleStream {
typeVersion?: string;
}

export interface Subtitle extends FileWrapper {
export interface Subtitle {
file: FileClass;
container: null;
streams: Array<Array<FluffyStream | string>>;
proxies: Proxies;
Expand Down

0 comments on commit 29fc20d

Please sign in to comment.