adding presentation background

This commit is contained in:
2022-08-14 22:11:54 +02:00
parent a02e740c0f
commit e9846b29e5
41 changed files with 212 additions and 104 deletions

View File

@@ -1,6 +1,8 @@
import firebase from 'firebase/compat/app';
import Timestamp = firebase.firestore.Timestamp;
export type PresentationBackground = 'none' | 'blue' | 'green' | 'leder' | 'praise';
export interface Show {
id: string;
showType: string;
@@ -15,4 +17,5 @@ export interface Show {
presentationSongId: string;
presentationSection: number;
presentationZoom: number;
presentationBackground: PresentationBackground;
}