0.1.3 • Published 7 months ago

@types/find-down v0.1.3

Weekly downloads
1
License
MIT
Repository
github
Last release
7 months ago

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

// Type definitions for find-down 0.1
// Project: https://github.com/sholladay/find-down
// Definitions by: Florian Keller <https://github.com/ffflorian>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped

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: Thu, 08 Jul 2021 12:01:37 GMT
  • Dependencies: none
  • Global values: none

Credits

These definitions were written by Florian Keller.