UNPKG

symlink-dir

Version:

Cross-platform directory symlinking

20 lines (19 loc) 449 B
declare function symlinkDir(target: string, path: string, opts?: { overwrite?: boolean; }): Promise<{ reused: boolean; warn?: string; }>; declare namespace symlinkDir { var _a: typeof symlinkDir; export { _a as default }; } export = symlinkDir; declare namespace symlinkDir { function sync(target: string, path: string, opts?: { overwrite?: boolean; }): { reused: boolean; warn?: string; }; }