EU Parliament Monitor — API Documentation - v0.9.0
    Preparing search index...

    Interface KeyTakeawaysResult

    Structured representation of key-takeaways synthesis output.

    Note: The current buildKeyTakeaways function returns a plain string (the rendered Markdown block). This interface is a forward-looking contract for future structured consumers that need both the raw takeaway items and the rendered output. Use Takeaway (from key-takeaways.ts) for per-item typing when processing the raw bullets.

    interface KeyTakeawaysResult {
        takeaways: readonly SynthesisedTakeaway[];
        markdown: string;
    }
    Index

    Properties

    Properties

    takeaways: readonly SynthesisedTakeaway[]

    Ordered list of synthesised takeaways (3–7 items).

    markdown: string

    Rendered Markdown block (empty string when below minimum threshold).