UNPKG

@thoughtspot/visual-embed-sdk

Version:
21 lines 768 B
import { getValueFromWindow, storeValueInWindow } from '../utils'; const configKey = 'embedConfig'; /** * Gets the configuration embed was initialized with. * @returns {@link EmbedConfig} The configuration embed was initialized with. * @version SDK: 1.19.0 | ThoughtSpot: * * @group Global methods */ export const getEmbedConfig = () => getValueFromWindow(configKey) || {}; /** * Sets the configuration embed was initialized with. * And returns the new configuration. * @param newConfig The configuration to set. * @version SDK: 1.27.0 | ThoughtSpot: * * @group Global methods */ export const setEmbedConfig = (newConfig) => { storeValueInWindow(configKey, newConfig); return getValueFromWindow(configKey); }; //# sourceMappingURL=embedConfig.js.map