mirror of
https://github.com/FlipsideCrypto/DefinitelyTyped.git
synced 2026-02-06 10:56:53 +00:00
18 lines
492 B
TypeScript
18 lines
492 B
TypeScript
// Type definitions for readme-filename 1.0
|
|
// Project: https://github.com/ngryman/readme-filename#readme
|
|
// Definitions by: Manuel Thalmann <https://github.com/manuth>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
/**
|
|
* Determines the path to a `README` file.
|
|
*
|
|
* @param root
|
|
* The directory to look for a `README` file.
|
|
*
|
|
* @returns
|
|
* The path to the `README` file.
|
|
*/
|
|
declare function readmeFilename(root?: string): Promise<string>;
|
|
|
|
export = readmeFilename;
|