Magpie HTML - v0.1.3
    Preparing search index...

    Interface ParseResult

    Parse result containing both normalized and original data.

    Returned by parseFeed. Contains both the normalized feed data (recommended for most use cases) and the original format-specific data (for advanced use cases requiring format-specific fields).

    interface ParseResult {
        feed: Feed;
        original: unknown;
    }
    Index

    Properties

    Properties

    feed: Feed

    Normalized feed data (recommended)

    original: unknown

    Original format-specific data (advanced use)