transpose & history

This commit is contained in:
2020-06-13 17:41:53 +02:00
parent bcbd119fbd
commit 835ffa9e8e
19 changed files with 256 additions and 23 deletions

View File

@@ -1,3 +1,6 @@
import Timestamp = firebase.firestore.Timestamp;
import * as firebase from 'firebase';
export interface Song {
id: string;
comment: string;
@@ -19,4 +22,11 @@ export interface Song {
label: string;
termsOfUse: string;
origin: string;
edits: Edit[];
}
export interface Edit {
username: string;
timestamp: Timestamp;
}