link-unlink
Version:
Link and unlink with saving and restoring the previous file or directory
11 lines (10 loc) • 325 B
TypeScript
export { default as link } from './link.ts';
export type * from './types.ts';
export { default as unlink } from './unlink.ts';
import { default as link } from './link.ts';
import { default as unlink } from './unlink.ts';
declare const _default: {
link: typeof link;
unlink: typeof unlink;
};
export default _default;