Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
Bramart committed Aug 30, 2024
1 parent ddd831d commit fca45f1
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1051,9 +1051,14 @@ export enum State {
}

export type BroadcastableProxies = {
broadcastable: Record<
"imf" | "dcp" | "dcdm" | "audiomerge",
FileClass | null
>;
file: Record<string, { lowres: FileClass | null; hires: FileClass | null }>;
broadcastable: {
imf?: FileClass;
dcp?: FileClass;
dcdm?: FileClass;
audiomerge?: FileClass;
};
files: Record<string, {
lowres?: FileClass;
hires?: FileClass;
}>;
};

0 comments on commit fca45f1

Please sign in to comment.