Wagtail client-side components
    Preparing search index...
    interface Comment {
        annotation: null | Annotation;
        author: null | Author;
        contentpath: string;
        date: number;
        deleted: boolean;
        localId: number;
        mode: CommentMode;
        newReply: string;
        newText: string;
        originalText: string;
        position: string;
        remoteId: null | number;
        remoteReplyCount: number;
        replies: Map<number, CommentReply>;
        resolved: boolean;
        text: string;
    }
    Index

    Properties

    annotation: null | Annotation
    author: null | Author
    contentpath: string
    date: number
    deleted: boolean
    localId: number
    newReply: string
    newText: string
    originalText: string
    position: string
    remoteId: null | number
    remoteReplyCount: number
    replies: Map<number, CommentReply>
    resolved: boolean
    text: string