/// /** * **symlinks** * * Given a specified directory, this function will return an array of * files and folders which are symlinks. If you wish only files or folders, * you can specify this in the optional _filter_ parameter. */ export declare function symlinks(dir: string, filter?: "only-files" | "only-dirs"): { linkTo: string; file: string; stats: import("fs").Stats; }[]; //# sourceMappingURL=symlinks.d.ts.map