mirror of
https://github.com/LBRYFoundation/lbry-desktop.git
synced 2025-08-23 17:47:24 +00:00
19 lines
502 B
JavaScript
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,
|
|
};
|