We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8a155ef commit b796dc9Copy full SHA for b796dc9
CHANGELOG.md
@@ -4,6 +4,13 @@ Bug fixes
4
----------
5
- Stop reconnecting after `Worker.disconnect` has been called.
6
7
+New Features
8
+----------
9
+- Export `WorkspaceOptions` type
10
+
11
+Maintenance
12
13
+- Upgraded `ws` dependency
14
15
2.0.10
16
==========
types.d.ts
@@ -337,6 +337,12 @@ export interface WorkerOptions {
337
enableVersionCheck?: boolean;
338
}
339
340
+export interface WorkspaceOptions {
341
+ region?: string;
342
+ pageSize?: number;
343
+ logLevel?: "error" | "warn" | "info" | "debug" | "trace" | "silent";
344
+}
345
346
export interface TaskOptions {
347
attributes?: any;
348
taskChannelUniqueName?: string;
0 commit comments