import { Account } from "../api/portal"; export type AccountSelf = { id: number; titel: string; vorname: string; nachname: string; position: string; institut: string; stn: string; hnr: number; hnrz: string; plz: string; ort: string; ortz: string; email: string; mobil: string; telefon: string; username: string; admin: boolean; dse: boolean; vnb: boolean; cookies_1: boolean; cookies_2: boolean; last_webmap: number; last_filter: number; last_ars: number; last_nts: number; }; export interface AccountWithAuthz { rolle: string; sec_level: number; } export interface AccountExtended extends Account, AccountWithAuthz { }