Files
runbin/web/node_modules/fdir/dist/api/functions/is-recursive-symlink.d.ts
lhx-666-cool f6cb277519 add web
2025-04-25 17:03:25 +08:00

6 lines
352 B
TypeScript

import { WalkerState } from "../../types";
type IsRecursiveSymlinkFunction = (state: WalkerState, path: string, resolved: string, callback: (result: boolean) => void) => void;
export declare const isRecursiveAsync: IsRecursiveSymlinkFunction;
export declare function isRecursive(state: WalkerState, path: string, resolved: string): boolean;
export {};