attlaz-client 1.4.13 → 1.4.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,12 +1,13 @@
|
|
|
1
|
+
import { DataValueValue } from '../DataValue';
|
|
1
2
|
export declare class WorkerConfig {
|
|
2
3
|
static KEY_STATE: string;
|
|
3
4
|
static KEY_SCALE: string;
|
|
4
5
|
static KEY_MEMORY_LIMIT: string;
|
|
5
6
|
static KEY_CPU_LIMIT: string;
|
|
6
|
-
static
|
|
7
|
+
static KEY_PLATFORM: string;
|
|
7
8
|
projectEnvironment: string;
|
|
8
9
|
key: string;
|
|
9
|
-
value:
|
|
10
|
-
constructor(project_environment: string, key: string, value:
|
|
10
|
+
value: DataValueValue;
|
|
11
|
+
constructor(project_environment: string, key: string, value: DataValueValue);
|
|
11
12
|
static parse(raw: any): WorkerConfig;
|
|
12
13
|
}
|