interface ISDContent {
    contents: ISDContent[];
    id: string;
    kind: string;
    styleAttrs: Record<string, StyleAttrType | StyleAttrType[]>;
    text?: string;
}

Properties

contents: ISDContent[]
id: string
kind: string
styleAttrs: Record<string, StyleAttrType | StyleAttrType[]>
text?: string