Updated Flaschengeist type definition file

This commit is contained in:
Ferdinand Thiessen 2021-01-26 16:38:12 +01:00
parent 887262ae5a
commit 61316dcd9f
1 changed files with 4 additions and 1 deletions

View File

@ -39,7 +39,10 @@ declare namespace FG {
type: EventType;
jobs: Array<Job>;
}
type EventType = string;
interface EventType {
id: number;
name: string;
}
interface Job {
id: number;
start: Date;