UNPKG

a2r

Version:
8 lines (7 loc) 334 B
/** * Gets files recursively * @param folderPath Path to get files from * @param extName Extension names to filter files (including `.`) */ declare const getFilesRecursively: (folderPath: string, pathsToIgnore?: string[] | undefined, filesToIgnore?: string[] | undefined) => Promise<string[]>; export default getFilesRecursively;