Updated definitions for API

This commit is contained in:
Ferdinand Thiessen 2021-02-07 14:42:27 +01:00
parent cc47e21a31
commit 7fe59f67f5
1 changed files with 3 additions and 1 deletions

View File

@ -15,6 +15,7 @@ declare namespace FG {
mail: string;
birthday?: Date;
roles: Array<string>;
permissions?: list;
avatar_url?: string;
}
type Permission = string;
@ -36,8 +37,9 @@ declare namespace FG {
interface Event {
id: number;
start: Date;
end: Date;
description?: string;
type?: EventType;
type: EventType;
jobs: Array<Job>;
}
interface EventType {