mirror of
https://github.com/LBRYFoundation/lbry-android.git
synced 2025-08-31 01:01:26 +00:00
11 lines
191 B
JavaScript
11 lines
191 B
JavaScript
import { ACTIONS } from 'lbry-redux';
|
|
|
|
export function doSetClientSetting(key, value) {
|
|
return {
|
|
type: ACTIONS.CLIENT_SETTING_CHANGED,
|
|
data: {
|
|
key,
|
|
value,
|
|
},
|
|
};
|
|
}
|