Skip to content

Commit c637d02

Browse files
committed
typedoc
1 parent 9885140 commit c637d02

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

packages/client/src/connection.ts

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -138,12 +138,18 @@ export type ConnectionOptionsWithDefaults = Required<
138138
connectTimeoutMs: number;
139139
};
140140

141+
/**
142+
* A symbol used to attach extra, SDK-internal connection options.
143+
*
144+
* @internal
145+
* @hidden
146+
*/
141147
export const InternalConnectionOptionsSymbol = Symbol('__temporal_internal_connection_options');
142148
export type InternalConnectionOptions = ConnectionOptions & {
143149
[InternalConnectionOptionsSymbol]?: {
144150
/**
145-
* A symbol used internally to indicate whether support for TestService should be enabled on this
146-
* connection. This is set to true on connections created internally by the `TestWorkflowEnvironment.createTimeSkipping()`
151+
* Indicate whether the `TestService` should be enabled on this connection. This is set to true
152+
* on connections created internally by `TestWorkflowEnvironment.createTimeSkipping()`.
147153
*/
148154
supportsTestService?: boolean;
149155
};

0 commit comments

Comments
 (0)