/** * Returns the file contents of a file off of the user's home directory. * * @param filename the filename relative to the home directory * @param ignoreMissing if set to TRUE then no error is thrown when file is not found but instead the value `FALSE` is passed back */ export declare function getFileFromHomeDirectory(filename: string, ignoreMissing?: boolean): string | false; //# sourceMappingURL=getFileFromHomeDirectory.d.ts.map