type alias NewsPostSummary

The narrow list projection — id, created, slug, name, snippet — for readers that render no images (the RSS feed, the admin list). Never the large content/meta_* blobs (cold-start efficiency, like SitePageNavRow).

Definition

Pick<NewsPost,
"id"
| "created"
| "slug"
| "name"
| "snippet"
>

Usage

import { type NewsPostSummary } from "doc.ts";