Skip to content

Commit

Permalink
doc: Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
jaywcjlove committed Apr 19, 2022
1 parent 7027e76 commit ef263f3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion README.md
Expand Up @@ -147,7 +147,8 @@ export interface IFileDirStat extends Partial<fs.Stats> {
*/
ext?: string;
}
export default function recursiveReaddirFiles(rootPath: string, options?: RecursiveReaddirFilesOptions): Promise<IFileDirStat[]>;
declare type Callback = (filepath: string, stat: IFileDirStat, childs: IFileDirStat[]) => void;
export default function recursiveReaddirFiles(rootPath: string, options?: RecursiveReaddirFilesOptions, callback?: Callback): Promise<IFileDirStat[]>;
export { recursiveReaddirFiles };
/**
* Get ext
Expand Down

0 comments on commit ef263f3

Please sign in to comment.