mirror of
https://github.com/caprover/caprover
synced 2026-05-03 10:10:29 +00:00
4a32cb9dc3
* Updated packages * Updated packages * Fixed formatting * Fixed tests
27 lines
565 B
TypeScript
27 lines
565 B
TypeScript
export class NetDataInfo {
|
|
public isEnabled: boolean
|
|
public data: {
|
|
smtp: {
|
|
to: string
|
|
hostname: string
|
|
server: string
|
|
port: string
|
|
allowNonTls: string
|
|
username: string
|
|
password: string
|
|
}
|
|
slack: {
|
|
hook: string
|
|
channel: string
|
|
}
|
|
telegram: {
|
|
chatId: string
|
|
botToken: string
|
|
}
|
|
pushBullet: {
|
|
apiToken: string
|
|
fallbackEmail: string
|
|
}
|
|
}
|
|
}
|