Type Aliases
Type Alias: BlogPostListItem
A blog post as returned by the list endpoint.
type BlogPostListItem = Omit<BlogPost, "content"> & object;
A blog post as returned by the list endpoint.
content is optional here because the list omits it by default (smaller/faster responses).
Opt in with ?includeContent=true — the field is then populated. The single-post endpoint
(getBySlug) always returns a full BlogPost with content present.
Type Declaration
| Name | Type |
|---|---|
content? | string |

