Installation
npm install --save @types/find-down
Summary
This package contains type definitions for find-down (https://github.com/sholladay/find-down).
Details
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/find-down.
index.d.ts
declare namespace findDown {
interface Options {
/** Directory to end with. Default: `process.cwd()` */
cwd?: string | undefined;
}
}
declare function findDown(filename: string | string[], options?: findDown.Options): Promise<string | null>;
export = findDown;
Additional Details
- Last updated: Tue, 07 Nov 2023 03:09:37 GMT
- Dependencies: none
Credits
These definitions were written by Florian Keller.