14 lines
226 B
TypeScript
14 lines
226 B
TypeScript
import * as firebase from 'firebase';
|
|
import Timestamp = firebase.firestore.Timestamp;
|
|
|
|
|
|
export interface Show {
|
|
id: string;
|
|
showType: string;
|
|
date: Timestamp;
|
|
owner: string;
|
|
public: boolean;
|
|
reported: boolean;
|
|
}
|
|
|