Skip to content

Interface PostProcessOptions

🏷️ Properties

handler optional

ts
handler: (postProcessor: PostProcessor) => Promise<boolean>

Custom handlers to handle the post processor

Defined in: packages/installer/profile.ts:72

java optional

ts
java: string

The java exectable path. It will use java by default. Inherited from: SpawnJavaOptions.java

Defined in: packages/installer/utils.ts:43

spawn optional

ts
spawn: (command: string, args?: readonly string[], options?: SpawnOptions) => ChildProcess

The spawn process function. Used for spawn the java process at the end.

By default, it will be the spawn function from "child_process" module. You can use this option to change the 3rd party spawn like cross-spawnInherited from: SpawnJavaOptions.spawn

Defined in: packages/installer/utils.ts:50