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

4 lines
64 B
TypeScript

export class TextNode {
constructor(public text: string) {}
}