| 1 2 3 4 5 6 7 8 9 10 | 1× 1× 1× 1× | const ProviderProxy = require('riotclient-async-provider-proxy');
const components = ProviderProxy.components;
const computed = components.computed;
module.exports = computed({
me: computed.resource('/lol-chat/v1/me'),
blockedPlayers: computed.resource('/lol-chat/v1/blocked-players')
});
|