Skip to content

Commit 60ac2da

Browse files
committed
Fix indentation in docstring
1 parent e775d04 commit 60ac2da

File tree

1 file changed

+17
-17
lines changed

1 file changed

+17
-17
lines changed

packages/sdk/src/server/index.ts

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -799,23 +799,23 @@ export class BackendClient {
799799
* @returns A promise resolving to the response from the workflow.
800800
*
801801
* @example
802-
*```typescript
803-
*const response = await client.invokeWorkflowForExternalUser(
804-
* "https://your-workflow-url.m.pipedream.net",
805-
* "your-external-user-id",
806-
* {
807-
* body: {
808-
* foo: 123,
809-
* bar: "abc",
810-
* baz: null,
811-
* },
812-
* headers: {
813-
* "Accept": "application/json",
814-
* },
815-
* },
816-
*);
817-
*console.log(response);
818-
*```
802+
* ```typescript
803+
* const response = await client.invokeWorkflowForExternalUser(
804+
* "https://your-workflow-url.m.pipedream.net",
805+
* "your-external-user-id",
806+
* {
807+
* body: {
808+
* foo: 123,
809+
* bar: "abc",
810+
* baz: null,
811+
* },
812+
* headers: {
813+
* "Accept": "application/json",
814+
* },
815+
* },
816+
* );
817+
* console.log(response);
818+
* ```
819819
*/
820820
public async invokeWorkflowForExternalUser(
821821
url: string,

0 commit comments

Comments
 (0)