Skip to content

Commit e4a6d5b

Browse files
committed
update student work prop types
1 parent dee7424 commit e4a6d5b

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed
Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,23 @@
11
// @flow
22

33
export type JobType = {
4-
id: number,
54
comments: string,
65
contactEmail: string,
7-
contactFirstName: string,
8-
contactLastName: string,
96
contactName: string,
10-
contactPhone: number,
7+
contactPhone: string,
118
description: string,
9+
goodForIncomingStudents: boolean,
1210
hoursPerWeek: string,
11+
howToApply: string,
12+
id: number,
1313
lastModified: string,
1414
links: Array<string>,
1515
office: string,
16+
openPositions: string,
1617
skills: string,
18+
timeline: string,
1719
timeOfHours: string | number,
1820
title: string,
1921
type: string,
22+
year: string,
2023
}

0 commit comments

Comments
 (0)