Files
noahspan-portfolio/client/src/components/experiences/Experience.interface.ts
noahspannbauer 9d9cdbaebc
Some checks failed
Main / changes (push) Successful in 34s
Main / deploy (push) Has been cancelled
Main / build-and-test (push) Has been cancelled
First commit
2026-07-17 12:28:28 -05:00

18 lines
439 B
TypeScript

import { Status } from '../../interfaces/Status.interface';
import { Profile } from '../profiles/Profile.interface';
import { Skill } from "../skills/Skill.interface";
export interface Experience {
id: string;
profileId: string;
companyName: string;
companyGenericName: string;
location: string;
title: string;
startDate: Date;
endDate?: Date;
summary?: string;
skills: Skill[];
profile: Profile;
status: Status;
}