-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcurriculum.ts
More file actions
42 lines (41 loc) · 967 Bytes
/
curriculum.ts
File metadata and controls
42 lines (41 loc) · 967 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
37
38
39
40
41
42
import { Method, Period } from './enums'
import { Id } from './ids'
import { type Curriculum } from './types'
export const curriculum_24_25: Curriculum = {
[Id.TKT10002]: [
{
method: Method.LECTURE,
period: Period.FIRST,
},
],
[Id.TKT10003]: [
{
method: Method.LECTURE,
period: Period.SECOND,
},
],
[Id.TKT10004]: [
{
method: Method.LECTURE,
period: Period.THIRD,
},
{
method: Method.INDEPENDENT,
period: Period.INTENSIVE_MAY,
},
],
[Id.TKT10005]: [
{
method: Method.LECTURE,
start: new Date('2025-01-12'),
end: new Date('2025-05-15'),
},
],
[Id.TKT20001]: [
{
method: Method.LECTURE,
start: new Date('2025-01-12'),
end: new Date('2025-05-15'),
},
],
} as const