UNPKG

@o3r/dynamic-content

Version:

This module provides a mechanism to retrieve media and data depending on the host or a server specific url.

19 lines 559 B
/** * AssetPathOverride store state */ export interface AssetPathOverrideState { /** Mapping of asset path (key) and its override (value)*/ assetPathOverrides: Record<string, string>; } /** * Name of the AssetPathOverride Store */ export declare const ASSET_PATH_OVERRIDE_STORE_NAME = "assetPathOverride"; /** * AssetPathOverride Store Interface */ export interface AssetPathOverrideStore { /** AssetPathOverride state */ [ASSET_PATH_OVERRIDE_STORE_NAME]: AssetPathOverrideState; } //# sourceMappingURL=asset-path-override.state.d.ts.map