MonetizationOS Docs
Workflows ReferenceType Definitions

WebElement

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