components/key-value-store/KeyValueStoreClient.js

import KeyValueStore from './KeyValueStore.js';

/**
 * Client-side representation of the {@link KeyValueStore}
 *
 * @extends {KeyValueStore}
 */
class KeyValueStoreClient extends KeyValueStore {}

export default KeyValueStoreClient;