5 lines
89 B
TypeScript
5 lines
89 B
TypeScript
export class TextNode {
|
|
readonly name = "text"
|
|
constructor(public text: string) {}
|
|
}
|