setup-cpp/packages/setup-brew/src/InstallationInfo.ts

13 lines
336 B
TypeScript
Raw Normal View History

2024-08-24 06:20:37 +08:00
/**
* The information about an installation result
*/
export type InstallationInfo = {
/** The install dir of the package (Defaults to `undefined`) */
installDir?: string
/** The bin dir of the package (Defaults to `/usr/bin`) */
binDir: string
/** The bin path of the package (Defaults to `undefined`) */
bin?: string
}