仪表盘
版本库
文件存储
活动
搜索
登录
蔡年峰
/
HM_StandardPda-Browse
概况
操作记录
提交次数
目录
文档
分支
对比
blame
|
历史
|
原始文档
列表显示修改
xwt
2025-05-19
13f0dc35c1563020ade62c26891888ac27b24e6d
[~cnf/HM_StandardPda-Browse.git]
/
node_modules
/
fdir
/
dist
/
api
/
functions
/
walk-directory.d.ts
1
2
3
4
5
/// <reference types="node" />
import { WalkerState } from "../../types";
import fs from "fs";
export type WalkDirectoryFunction = (state: WalkerState, crawlPath: string, directoryPath: string, depth: number, callback: (entries: fs.Dirent[], directoryPath: string, depth: number) => void) => void;
export declare function build(isSynchronous: boolean): WalkDirectoryFunction;