blob: 39be85e48ac11848468814acd213f42df51e6cde (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
export interface ILecture {
title: string;
day: number;
begin: number;
end: number;
info: string;
room: string,
lecturer: string;
}
export interface ILectureFilter {
(lecture: ILecture): boolean;
}
|