Skip to content

Commit 01a7ab5

Browse files
committed
fix imports
1 parent e213140 commit 01a7ab5

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

src/content/docs/workflows/build/events-and-parameters.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ sidebar:
66

77
---
88

9-
import { MetaInfo, Render, Type } from "~/components";
9+
import { MetaInfo, Render, Type, Type, WranglerConfig, TypeScriptExample } from "~/components";
1010

1111
When a Workflow is triggered, it can receive an optional event. This event can include data that your Workflow can act on, including request details, user data fetched from your database (such as D1 or KV) or from a webhook, or messages from a Queue consumer.
1212

src/content/docs/workflows/build/rules-of-workflows.mdx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ sidebar:
55
order: 10
66
---
77

8+
import { WranglerConfig, TypeScriptExample } from "~/components";
9+
810
A Workflow contains one or more steps. Each step is a self-contained, individually retriable component of a Workflow. Steps may emit (optional) state that allows a Workflow to persist and continue from that step, even if a Workflow fails due to a network or infrastructure issue.
911

1012
This is a small guidebook on how to build more resilient and correct Workflows.

0 commit comments

Comments
 (0)