Skip to content

Commit

Permalink
feat: vacancy type
Browse files Browse the repository at this point in the history
  • Loading branch information
cesarhenrq committed Oct 6, 2023
1 parent 7a52a1f commit 11082b7
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/types/Vacancy.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
type Vacancy = {
id: string;
level: string;
location: string;
company: Company;
vacancyDescription: string;
vacancyRole: string;
vacancyType: string;
wage: number;
createdAt: Date;
updatedAt: Date;
};

0 comments on commit 11082b7

Please sign in to comment.