Changeset View
Changeset View
Standalone View
Standalone View
web/e.cash/app/data/blog.ts
| Show All 25 Lines | export interface BlogPostAttributes { | ||||
| content: string; | content: string; | ||||
| short_content: string; | short_content: string; | ||||
| type: string; | type: string; | ||||
| media_link?: string; | media_link?: string; | ||||
| publish_date?: string; | publish_date?: string; | ||||
| publishedAt: string; | publishedAt: string; | ||||
| slug: string; | slug: string; | ||||
| featured: boolean; | featured: boolean; | ||||
| highlighted: boolean; | |||||
| image: { | image: { | ||||
| data: BlogImageData; | data: BlogImageData; | ||||
| }; | }; | ||||
| } | } | ||||
| export interface BlogPost { | export interface BlogPost { | ||||
| id: number; | id: number; | ||||
| attributes: BlogPostAttributes; | attributes: BlogPostAttributes; | ||||
| ▲ Show 20 Lines • Show All 100 Lines • Show Last 20 Lines | |||||