All checks were successful
Build and Deploy Gabriel Kaszewski Portfolio / build-and-deploy-local (push) Successful in 1m25s
27 lines
558 B
TypeScript
27 lines
558 B
TypeScript
export interface Skill {
|
|
name: string;
|
|
}
|
|
|
|
export interface Job {
|
|
id: number;
|
|
position: string;
|
|
company: string;
|
|
still_working: boolean;
|
|
start_date: string;
|
|
end_date: string | null;
|
|
technologies: string[];
|
|
}
|
|
|
|
export interface Project {
|
|
id: number;
|
|
name: string;
|
|
short_description: string;
|
|
description: string;
|
|
technologies: string[];
|
|
thumbnails: string[];
|
|
category: 'Web' | 'Mobile' | 'Desktop' | 'Api' | 'Game';
|
|
github_url?: string | null;
|
|
visit_url?: string | null;
|
|
download_url?: string | null;
|
|
commercial?: boolean;
|
|
} |