View file File name : index.d.ts Content :// Type definitions for path-is-inside 1.0 // Project: https://github.com/domenic/path-is-inside#readme // Definitions by: Alexander Marks <https://github.com/aomarks> // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped declare function pathIsInside(thePath: string, potentialParent: string): boolean; export = pathIsInside;