| 2 | import Launcher from './main/Launcher' |
| 3 | |
| 4 | export interface ServerType { |
| 5 | AppDir?: string |
| 6 | Arch?: string |
| 7 | BrewCellar?: string |
| 8 | BrewHome?: string |
| 9 | BrewBin?: string |
| 10 | BrewError?: string |
| 11 | PodmanBin?: string |
| 12 | PodmanError?: string |
| 13 | Password?: string |
| 14 | Proxy?: { [key: string]: string } |
| 15 | isArmArch?: boolean |
| 16 | Static?: string |
| 17 | Cache?: string |
| 18 | RedisDir?: string |
| 19 | MongoDBDir?: string |
| 20 | FTPDir?: string |
| 21 | PhpDir?: string |
| 22 | NginxDir?: string |
| 23 | MysqlDir?: string |
| 24 | PostgreSqlDir?: string |
| 25 | MariaDBDir?: string |
| 26 | MemcachedDir?: string |
| 27 | BaseDir?: string |
| 28 | ApacheDir: string |
| 29 | Lang?: string |
| 30 | Local?: string |
| 31 | MacPorts?: string |
| 32 | SdkmanHome?: string |
| 33 | ForceStart?: boolean |
| 34 | UserHome?: string |
| 35 | Licenses?: string |
| 36 | UserUUID?: string |
| 37 | LangCustomer?: any |
| 38 | isMacOS?: boolean |
| 39 | isLinux?: boolean |
| 40 | isWindows?: boolean |
| 41 | APPVersion?: string |
| 42 | DebugForkActions?: Array<{ |
| 43 | command: string |
| 44 | module: string |
| 45 | action?: string |
| 46 | key: string |
| 47 | startedAt: number |
| 48 | }> |
| 49 | } |
| 50 | |
| 51 | declare global { |
| 52 | // @ts-ignore |
nothing calls this directly
no outgoing calls
no test coverage detected