UNPKG

@intlayer/config

Version:

Retrieve Intlayer configurations and manage environment variables for both server-side and client-side environments.

8 lines 292 B
import type { IntlayerConfig } from '../../client'; export type ReplaceValue<T> = { [K in keyof T]: string | number | boolean | undefined; }; export type IntlayerConfigEnvVariable = { [K in keyof IntlayerConfig]: ReplaceValue<IntlayerConfig[K]>; }; //# sourceMappingURL=types.d.ts.map