@kayahr/ed-journal
Version:
Typescript library to read/watch the player journal of Frontier's game Elite Dangerous
15 lines (14 loc) • 419 B
TypeScript
/**
* Checks if given path is readable.
*
* @param path - The path to check.
* @returns True if path is readable, false if not.
*/
export declare function isPathReadable(path: string): Promise<boolean>;
/**
* Checks if given path is a directory.
*
* @param path - The path to check.
* @returns True if path is a directory, false if not.
*/
export declare function isDirectory(path: string): Promise<boolean>;