export declare enum Language { PYTHON3 = "python3", PYTHON2 = "python2", C = "gcc", BASH = "bash", BATCH = "bat", JAVASCRIPT = "js", RUBY = "ruby", CPP = "cpp", JAVA = "java", GO = "go" } export declare enum Environment { UNIX = "unix", WIN = "win32" } export interface IExecuteOptions { timeout?: number; } export declare const defaultExecutionTimeout = 5; export interface ILxcInitOptions { runners?: number; maxProcesses?: number; maxFiles?: number; } export declare const defaultLxcInitOptions: ILxcInitOptions; //# sourceMappingURL=constants.d.ts.map