UNPKG

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