e2c85af001
* For now, only one avatar possible, * uses mod_random_vcard_peertubelivechat, * mod_random_vcard_peertubelivechat has a new option with the avatar list (instead of a hardcoded avatar number) * Peertube lists available avatars files, and pass it to mod_random_vcard_peertubelivechat
26 lines
446 B
TypeScript
26 lines
446 B
TypeScript
interface ProsodyFilePaths {
|
|
dir: string
|
|
pid: string
|
|
error: string
|
|
log: string
|
|
config: string
|
|
data: string
|
|
certs?: string
|
|
certsDirIsCustom: boolean
|
|
modules: string
|
|
avatars: string
|
|
avatarsFiles: string[]
|
|
botAvatars: string
|
|
botAvatarsFiles: string[]
|
|
exec?: string
|
|
execArgs: string[]
|
|
execCtl?: string
|
|
execCtlArgs: string[]
|
|
appImageToExtract?: string
|
|
appImageExtractPath: string
|
|
}
|
|
|
|
export {
|
|
ProsodyFilePaths
|
|
}
|