UNPKG

casterly

Version:
16 lines (15 loc) 374 B
interface Env { [key: string]: string; } declare function getClientEnvironment({ isServer, worker }?: { isServer?: boolean | undefined; worker?: boolean | undefined; }): { raw: Env; stringified: { 'process.env.ASSET_PATH': string; 'process.browser': string; 'typeof window': string; }; }; export default getClientEnvironment;