ed3f236120
* stop trying to generated an ARM64 AppImage (as it is buggy) * display a warning in the settings if incompatible CPU detected * documentation for a workaround Implements #120.
22 lines
343 B
TypeScript
22 lines
343 B
TypeScript
interface ProsodyFilePaths {
|
|
dir: string
|
|
pid: string
|
|
error: string
|
|
log: string
|
|
config: string
|
|
data: string
|
|
certs: string
|
|
modules: string
|
|
avatars: string
|
|
exec?: string
|
|
execArgs: string[]
|
|
execCtl?: string
|
|
execCtlArgs: string[]
|
|
appImageToExtract?: string
|
|
appImageExtractPath: string
|
|
}
|
|
|
|
export {
|
|
ProsodyFilePaths
|
|
}
|