astro-ghostcms/.pnpm-store/v3/files/40/296a95f4b166d135b0851c1920e...

8 lines
546 B
Plaintext
Raw Permalink Normal View History

2024-02-14 19:45:06 +00:00
interface FileSystemEntries {
readonly files: readonly string[];
readonly directories: readonly string[];
}
/** @param path directory of the tsconfig.json */
export declare function matchFiles(path: string, extensions: readonly string[] | undefined, excludes: readonly string[] | undefined, includes: readonly string[] | undefined, useCaseSensitiveFileNames: boolean, currentDirectory: string, depth: number | undefined, getFileSystemEntries: (path: string) => FileSystemEntries, realpath: (path: string) => string): string[];
export {};