import { DaffContentSchema } from '@daffodil/content'
A union type representing all possible content schema nodes. Can be an element, component, text node, or undefined.
type DaffContentSchema = DaffContentElementSchema | DaffContentComponentSchema | DaffTextSchema | undefined