mirror of
https://github.com/LBRYFoundation/lbry-desktop.git
synced 2025-09-01 09:45:10 +00:00
10 lines
154 B
JavaScript
10 lines
154 B
JavaScript
declare type BlocklistState = {
|
|
blockedChannels: Array<string>,
|
|
};
|
|
|
|
declare type BlocklistAction = {
|
|
type: string,
|
|
data: {
|
|
uri: string,
|
|
},
|
|
};
|