-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconstants.ts
More file actions
36 lines (34 loc) · 782 Bytes
/
constants.ts
File metadata and controls
36 lines (34 loc) · 782 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
export const Mathematics: string = "Mathematics";
export const Hebrew: string = "Hebrew";
export const Geography: string = "Geography";
export const History: string = "History";
export const Chemistry: string = "Chemistry";
export const Physics: string = "Physics";
export const Subjects:string[] = [Mathematics, Hebrew, Geography, History, Chemistry, Physics]
export const firstNames: string[] = [
"Ivan",
"Peter",
"Olga",
"Fyodor",
"Oleg",
"Ksenia",
"Vladislav",
"Anton",
"Rushan",
"Dmitriy",
"Vladimir",
"Stepan"
];
export const lastNames: string[] = [
"Petrov",
"Ivanov",
"Sidorov",
"Kukushkin",
"Fyodorov",
"Haibulin",
"Osipov",
"Krasnov",
"Smith",
"Zheleznyakova",
"Kuznetsov"
];