My personal website
1/**
2 * Job and role type definitions
3 */
4
5import type { BaseContent } from './defineBase';
6
7export interface Job extends BaseContent {
8 jobTitle: string;
9 company: string;
10 jobDescription: string;
11 userNeed: string;
12 startDate: string;
13 endDate?: string;
14 employmentType: 'Contract' | 'Full-time';
15 skills: string[];
16 caseStudies?: string[];
17 client?: string;
18 cover?: string;
19}