mirror of
https://github.com/maciejpedzich/racemash.git
synced 2025-04-05 00:01:11 +02:00
19 lines
288 B
TypeScript
19 lines
288 B
TypeScript
export interface Photo {
|
|
fileName: string;
|
|
altText: string;
|
|
rating: number;
|
|
rd: number;
|
|
vol: number;
|
|
}
|
|
|
|
export interface Vote {
|
|
photos: [string, string];
|
|
result: 0 | 0.5 | 1;
|
|
}
|
|
|
|
export interface Database {
|
|
photos: Photo[];
|
|
votes: Vote[];
|
|
shownFactIndexes: number[];
|
|
}
|