Workflows ReferenceType Definitions
WebElement
type WebElement =
| {
content: string;
type: "html";
}
| {
content: string;
type: "text";
}
| ComponentElement
| {
type: "custom";
} & Record<string, unknown>;type WebElement =
| {
content: string;
type: "html";
}
| {
content: string;
type: "text";
}
| ComponentElement
| {
type: "custom";
} & Record<string, unknown>;