@promptbook/remote-client
Version:
Promptbook: Create persistent AI agents that turn your company's scattered knowledge into action
10 lines (9 loc) • 481 B
TypeScript
import type { string_executable_path } from '../../types/string_filename';
import type { LocateAppOptions } from '../locateApp';
/**
* Attempts to locate the specified application on a Linux system using the 'which' command.
* Returns the path to the executable if found, or null otherwise.
*
* @private within the repository
*/
export declare function locateAppOnLinux({ linuxWhich, }: Pick<Required<LocateAppOptions>, 'linuxWhich'>): Promise<string_executable_path | null>;