Files
reacord/src.new/text-node.ts
2021-12-25 01:52:55 -06:00

5 lines
89 B
TypeScript

export class TextNode {
readonly name = "text"
constructor(public text: string) {}
}