| 3 | export type ProbeContent = "BasicInfo" | "Server" | "OS" | "JDK" | "Bytecode" | "Command"; |
| 4 | |
| 5 | export interface ProbeConfig { |
| 6 | probeMethod: string; |
| 7 | probeContent: string; |
| 8 | shellClassName?: string; |
| 9 | targetJreVersion?: string; |
| 10 | debug?: boolean; |
| 11 | byPassJavaModule?: boolean; |
| 12 | shrink?: boolean; |
| 13 | staticInitialize?: boolean; |
| 14 | lambdaSuffix?: boolean; |
| 15 | } |
| 16 | |
| 17 | export interface ProbeContentConfig { |
| 18 | host?: string; |
nothing calls this directly
no outgoing calls
no test coverage detected