Skip to content

Type Alias: ChildBlock

ts
type ChildBlock = Block | string | number | null;

Defined in: src/renderer/types.ts:63

Valid children inside a Block.

  • Block — nested component
  • string — text content
  • number — numeric content
  • null — empty slot (skipped during rendering)

Matterway Assistant SDK Documentation