lbry-desktop/flow-typed/subscription.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

19 lines
502 B
JavaScript

// @flow
declare type Subscription = {
channelName: string, // @CryptoCandor,
uri: string, // lbry://@CryptoCandor#9152f3b054f692076a6882d1b58a30e8781cc8e6
notificationsDisabled?: boolean,
};
declare type Following = {
uri: string, // lbry://@CryptoCandor#9152f3b054f692076a6882d1b58a30e8781cc8e6
notificationsDisabled: boolean,
};
declare type SubscriptionState = {
subscriptions: Array<Subscription>,
following: Array<Following>,
loading: boolean,
firstRunCompleted: boolean,
};