1.0.4 • Published 2 years ago

@types/contains-path v1.0.4

Weekly downloads
58,538
License
MIT
Repository
github
Last release
2 years 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.