create project
This commit is contained in:
11
kitabcitab/node_modules/next/dist/server/lib/recursive-readdir-sync.d.ts
generated
vendored
Normal file
11
kitabcitab/node_modules/next/dist/server/lib/recursive-readdir-sync.d.ts
generated
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
/**
|
||||
* Recursively read directory
|
||||
* Returns array holding all relative paths
|
||||
*/
|
||||
export declare function recursiveReadDirSync(
|
||||
/** The directory to read */
|
||||
dir: string,
|
||||
/** This doesn't have to be provided, it's used for the recursion */
|
||||
arr?: string[],
|
||||
/** Used to replace the initial path, only the relative path is left, it's faster than path.relative. */
|
||||
rootDir?: string): string[];
|
||||
Reference in New Issue
Block a user