Interfaces
interface Text {
text: string
}Custom Properties
interface Element {
children: Node[]
}const paragraph = {
type: 'paragraph',
children: [...],
}
const link = {
type: 'link',
url: 'https://example.com',
children: [...]
}Helper Functions
Custom Helpers
Last updated