Interface CommentBaseDocument

interface CommentBaseDocument {
    content: string;
    hidden: boolean;
    key: string;
    parentId: null | string;
    reactions: {
        [key: string]: {
            [key: string]: ReactionUser;
        };
    };
}

Properties

content: string
hidden: boolean
key: string
parentId: null | string
reactions: {
    [key: string]: {
        [key: string]: ReactionUser;
    };
}

Type declaration