Pawnote
    Preparing search index...

    Type Alias NewsInformation

    NewsInformation: NewsItem & Readonly<
        {
            is: "information";
            question: NewsQuestion;
            get acknowledged(): boolean;
            get acknowledgedDate(): undefined | Date;
            get attachments(): Readonly<
                { id: string; kind: AttachmentKind; name: string; url: string },
            >[];
            get content(): string;
            get needToAcknowledge(): boolean;
        },
    >