@ac-essentials/app-util
    Preparing search index...

    Type Alias ProcessKillByPidFileOptions

    type ProcessKillByPidFileOptions = {
        signal?: AbortSignal | null;
        waitOptions?: Omit<ProcessWaitPidOptions, "signal"> | null;
    }
    Index

    Properties

    signal?: AbortSignal | null

    An optional AbortSignal that can be used to abort the operation.

    waitOptions?: Omit<ProcessWaitPidOptions, "signal"> | null

    Wait options to use after sending the kill signal. Default is {} (wait for termination with default options).

    If null, the function will not wait for the process to terminate.