@mikeyt23/node-cli-utils
    Preparing search index...

    Interface WhichResult

    The result type for whichSync. Contains the location of the command, any additional locations, and an error if one occurred.

    interface WhichResult {
        additionalLocations: string[] | undefined;
        error: Error | undefined;
        location: string | undefined;
    }
    Index

    Properties

    additionalLocations: string[] | undefined
    error: Error | undefined
    location: string | undefined