@intlayer/config
Version:
Retrieve Intlayer configurations and manage environment variables for both server-side and client-side environments.
15 lines • 433 B
TypeScript
//#region src/utils/setIntlayerIdentifier.d.ts
type Meta = {
enabled: true;
};
type WindowsWithIntlayer = typeof window & {
intlayer?: Meta;
};
/**
* Sets the version of Intlayer in the window object.
* This is used for Intlayer detection in the browser.
*/
declare const setIntlayerIdentifier: () => void;
//#endregion
export { WindowsWithIntlayer, setIntlayerIdentifier };
//# sourceMappingURL=setIntlayerIdentifier.d.ts.map