Skip to content

Commit

Permalink
Update to allow media box text slide
Browse files Browse the repository at this point in the history
  • Loading branch information
zoton2 committed Dec 7, 2023
1 parent 81e59ee commit bf0bf0e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
7 changes: 4 additions & 3 deletions src/types/schemas/mediaBox.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,11 @@

export type MediaBox = MediaBox1;
export type Rotation = {
type: 'image' | 'prize' | 'prize_generic';
type: 'image' | 'prize' | 'prize_generic' | 'text';
id: string;
mediaUUID: string;
seconds: number;
text?: string;
showOnIntermission: boolean;
}[];

Expand Down Expand Up @@ -45,15 +46,15 @@ export interface MediaBox1 {
};
}[];
paused: {
type: 'image' | 'prize' | 'prize_generic' | 'donation' | 'subscription' | 'cheer' | 'merch' | 'therungg';
type: 'image' | 'prize' | 'prize_generic' | 'text' | 'donation' | 'subscription' | 'cheer' | 'merch' | 'therungg';
id: string;
mediaUUID: string;
index: number;
timestamp: number;
timeElapsed: number;
} | null;
current: {
type: 'image' | 'prize' | 'prize_generic' | 'donation' | 'subscription' | 'cheer' | 'merch' | 'therungg';
type: 'image' | 'prize' | 'prize_generic' | 'text' | 'donation' | 'subscription' | 'cheer' | 'merch' | 'therungg';
id: string;
mediaUUID: string;
index: number;
Expand Down

0 comments on commit bf0bf0e

Please sign in to comment.