UNPKG

300 BTypeScriptView Raw
1/**
2 * Find a file in a directory, case-insensitive
3 *
4 * @param {string} filepath
5 * @return {string|undefined} File path with correct case
6 */
7export default function findFileCaseInsensitive(filepath: string): string | undefined;
8/**
9 * Clear cache.
10 */
11export declare function clearCache(): void;