@sdlcworks/components 0.0.21 → 0.0.22
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.
- package/dist/index.d.ts +2 -5
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -192,12 +192,9 @@ export type ConnectionHandlerCtx<S, ConnectorData, ConnectionType extends string
|
|
|
192
192
|
};
|
|
193
193
|
/**
|
|
194
194
|
* Result returned by connection handlers.
|
|
195
|
-
*
|
|
196
|
-
* - A record mapping component names to their URIs
|
|
197
|
-
* - A single URI string
|
|
198
|
-
* - void if no URIs need to be returned
|
|
195
|
+
* Must return a record mapping component names to their URIs.
|
|
199
196
|
*/
|
|
200
|
-
export type ConnectionHandlerResult = Record<string, PulumiOutput<string
|
|
197
|
+
export type ConnectionHandlerResult = Record<string, PulumiOutput<string>>;
|
|
201
198
|
/**
|
|
202
199
|
* A connection handler entry mapping a ConnectionInterface to its handler function.
|
|
203
200
|
*/
|