17 lines
383 B
TypeScript
17 lines
383 B
TypeScript
|
export interface IServer {
|
||
|
name: string;
|
||
|
iconURL: string;
|
||
|
useRealName: boolean;
|
||
|
FileUpload_MediaTypeWhiteList: string;
|
||
|
FileUpload_MaxFileSize: number;
|
||
|
roomsUpdatedAt: Date;
|
||
|
version: string;
|
||
|
lastLocalAuthenticatedSession: Date;
|
||
|
autoLock: boolean;
|
||
|
autoLockTime: number | null;
|
||
|
biometry: boolean | null;
|
||
|
uniqueID: string;
|
||
|
enterpriseModules: string;
|
||
|
E2E_Enable: boolean;
|
||
|
}
|