parent
3dd6eb487e
commit
dd6315caf9
8 changed files with 35 additions and 23 deletions
@ -1,3 +0,0 @@ |
||||
interface AnvilDataStruct { |
||||
[key: string]: AnvilDataStruct | boolean; |
||||
} |
@ -1,10 +0,0 @@ |
||||
type DatabaseHash = { |
||||
[hostUUID: string]: { |
||||
host: string; |
||||
name: string; |
||||
password: string; |
||||
ping: string; |
||||
port: string; |
||||
user: string; |
||||
}; |
||||
}; |
@ -0,0 +1,26 @@ |
||||
interface AnvilDataStruct { |
||||
[key: string]: AnvilDataStruct | boolean; |
||||
} |
||||
|
||||
type AnvilDataDatabaseHash = { |
||||
[hostUUID: string]: { |
||||
host: string; |
||||
name: string; |
||||
password: string; |
||||
ping: string; |
||||
port: string; |
||||
user: string; |
||||
}; |
||||
}; |
||||
|
||||
type AnvilDataUPSHash = { |
||||
[upsName: string]: { |
||||
agent: string; |
||||
brand: string; |
||||
description: string; |
||||
}; |
||||
}; |
||||
|
||||
type GetAnvilDataOptions = import('child_process').SpawnSyncOptions & { |
||||
predata?: Array<[string, ...unknown[]]>; |
||||
}; |
@ -1,3 +0,0 @@ |
||||
type GetAnvilDataOptions = import('child_process').SpawnSyncOptions & { |
||||
predata?: Array<[string, ...unknown[]]>; |
||||
}; |
Loading…
Reference in new issue