lbry-desktop/flow-typed/livestream.js
zeppi 6d967d0a1e provide livestream replay publish via url
review changes

move file size limit to conig

fix posts not showing up on desktop

force type=file if livestream disabled

livestream replay upload styling

form error on no replay selected

fix check livestreams results

redirect?

Update live stream FAQ
2021-04-13 23:31:01 -04:00

22 lines
504 B
JavaScript

// @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>;