Files
caprover/src/models/NetDataInfo.ts
T
Kasra Bigdeli 4a32cb9dc3 Updated packages (#2165)
* Updated packages

* Updated packages

* Fixed formatting

* Fixed tests
2024-10-17 21:16:25 -07:00

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
}
}
}