env.d.ts 237 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10
export declare const setEnv: (env: string) => void;
export interface RT {
    [key: string]: any;
}
export declare const getClientEnvironment: (publicUrl: string) => {
    raw: RT;
    stringified: {
        'process.env': {};
    };
};