interface LatestBlurb {
    id: number;
    image: string;
    latest: {
        created: number;
        link: string;
        name: string;
    }[];
    tags: string[];
    title: string;
    type: string;
}

Hierarchy (view full)

Properties

id: number
image: string
latest: {
    created: number;
    link: string;
    name: string;
}[]
tags: string[]
title: string
type: string