2021-04-14 06:06:11 +02:00
|
|
|
// @flow
|
|
|
|
|
|
|
|
declare type LivestreamReplayItem = {
|
|
|
|
data: {
|
|
|
|
claimId: string,
|
|
|
|
deleted: boolean,
|
|
|
|
deletedAt: ?string,
|
|
|
|
ffprobe: any,
|
|
|
|
fileDuration: number, // decimal? float? string?
|
|
|
|
fileType: string,
|
|
|
|
fileLocation: string,
|
|
|
|
fileSize: number,
|
|
|
|
key: string,
|
|
|
|
published: boolean,
|
|
|
|
publishedAt: ?string,
|
|
|
|
service: string,
|
|
|
|
thumbnails: Array<string>,
|
|
|
|
uploadedAt: string, // Date?
|
|
|
|
},
|
|
|
|
id: string,
|
|
|
|
}
|
|
|
|
declare type LivestreamReplayData = Array<LivestreamReplayItem>;
|
2021-04-23 05:04:11 +02:00
|
|
|
|
|
|
|
declare type LivestreamState = {
|
|
|
|
idsFetching: {},
|
|
|
|
}
|