@promptbook/remote-client
Version:
Promptbook: Turn your company's scattered knowledge into AI ready books
22 lines (21 loc) • 555 B
TypeScript
import type { string_executable_path } from '../types/typeAliases';
/**
* Paths to the external programs executables
*/
export type Executables = {
/**
* Path to the `pandoc` executable
*
* @example 'C:/Users/me/AppData/Local/Pandoc/pandoc.exe'
*/
pandocPath?: string_executable_path;
/**
* Path to the LibreOffice executable
*
* @example 'C:/Program Files/LibreOffice/program/swriter.exe'
*/
libreOfficePath?: string_executable_path;
};
/**
* <- TODO: Add !!! `browserPath` to `Executables`
*/