@mikelaferriere/espn-api
    Preparing search index...

    Interface NewsResponse

    interface NewsResponse {
        articles: {
            byline: string;
            categories: { id: string; team: { id: string }; type: string }[];
            description: string;
            headline: string;
            id: string;
            images: {
                height: number;
                name: string;
                type: string;
                url: string;
                width: number;
            }[];
            lastModified: string;
            links: Link[];
            published: string;
            shortHeadline: string;
            story: string;
            type: string;
        }[];
    }
    Index

    Properties

    Properties

    articles: {
        byline: string;
        categories: { id: string; team: { id: string }; type: string }[];
        description: string;
        headline: string;
        id: string;
        images: {
            height: number;
            name: string;
            type: string;
            url: string;
            width: number;
        }[];
        lastModified: string;
        links: Link[];
        published: string;
        shortHeadline: string;
        story: string;
        type: string;
    }[]