20 lines
403 B
TypeScript
20 lines
403 B
TypeScript
export type ZimbraSettings = {
|
|
serverUrl: string | null
|
|
username: string | null
|
|
calendarPath: string | null
|
|
enabled: boolean
|
|
hasPassword: boolean
|
|
}
|
|
|
|
export type ZimbraSettingsWrite = {
|
|
serverUrl: string | null
|
|
username: string | null
|
|
calendarPath: string | null
|
|
password?: string | null
|
|
enabled: boolean
|
|
}
|
|
|
|
export type ZimbraTestResult = {
|
|
success: boolean
|
|
}
|