UNPKG

@acoustic-content-sdk/redux-feature-url-config

Version:

> TODO: description

22 lines (21 loc) 821 B
import { URL_CONFIG_FEATURE } from './url.config.id'; import { UrlConfigState } from './url.config.state'; /** * Represents the {@link UrlConfigState | configuration} of the URLs to be used * when working with {@link https://developer.ibm.com/api/view/dx-prod:ibm-watson-content-hub:title-IBM_Watson_Content_Hub | WCH REST} services. */ export interface UrlConfigFeatureState { [URL_CONFIG_FEATURE]: UrlConfigState; } /** */ export declare const urlConfigFeatureReducer: { urlConfig: import("redux").Reducer<any, import("redux").AnyAction>; }; /** * Select the URL config feature * * @param aState - the feature state * @returns the URL configuration object */ export declare const selectUrlConfigFeature: import("rxjs").UnaryFunction<Record<string, any>, import("@acoustic-content-sdk/api").UrlConfig>;