1 | export = containsPath;
|
2 |
|
3 | declare function containsPath(
|
4 | filepath: string,
|
5 | substr: string,
|
6 | options?: containsPath.Options,
|
7 | ): boolean;
|
8 |
|
9 | declare namespace containsPath {
|
10 | interface Options {
|
11 | nocase?: boolean | undefined;
|
12 | partialMatch?: boolean | undefined;
|
13 | }
|
14 | }
|