1.0.4 • Published 7 months ago

@types/contains-path v1.0.4

Weekly downloads
58,538
License
MIT
Repository
github
Last release
7 months ago

Installation

npm install --save @types/contains-path

Summary

This package contains type definitions for contains-path (https://github.com/jonschlinkert/contains-path).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/contains-path.

index.d.ts

// Type definitions for contains-path 1.0
// Project: https://github.com/jonschlinkert/contains-path
// Definitions by: BendingBender <https://github.com/BendingBender>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped

export = containsPath;

declare function containsPath(
    filepath: string,
    substr: string,
    options?: containsPath.Options
): boolean;

declare namespace containsPath {
    interface Options {
        nocase?: boolean | undefined;
        partialMatch?: boolean | undefined;
    }
}

Additional Details

  • Last updated: Tue, 06 Jul 2021 20:32:29 GMT
  • Dependencies: none
  • Global values: none

Credits

These definitions were written by BendingBender.

1.0.2

9 months ago

1.0.4

7 months ago

1.0.3

7 months ago

1.0.1

3 years ago

1.0.0

5 years ago