1 2 3 4 5 6 7 8 9 10 11 12
import { ObjectField } from "./ObjectField"; import { serializable } from "serializr"; export class RichTextField extends ObjectField { @serializable(true) readonly Data: string; constructor(data: string) { super(); this.Data = data; } }