10 lines
132 B
TypeScript
10 lines
132 B
TypeScript
export type MessageTree = {
|
|
children: TextNode[]
|
|
render: () => void
|
|
}
|
|
|
|
export type TextNode = {
|
|
type: "text"
|
|
text: string
|
|
}
|