Laptop-Thing/web/node_modules/fdir/dist/api/functions/is-recursive-symlink.d.ts
2024-11-27 12:35:48 -05: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 {};