My personal website
1/**
2 * Article type definitions
3 */
4
5import type { BaseContent } from './defineBase';
6
7export interface Article extends BaseContent {
8 title: string;
9 subtitle?: string;
10 featured: boolean;
11 coverImage?: string;
12 articleUrl: string;
13 published: string;
14 publication: string;
15 publicationUrl: string;
16}