lbry-desktop/flow-typed/livestream.js

28 lines
579 B
JavaScript
Raw Normal View History

// @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 = {
2021-04-23 19:11:53 +02:00
fetchingById: {},
2021-06-17 20:55:23 +02:00
viewersById: {},
2021-04-23 05:04:11 +02:00
}