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.js';
export type * from './types.js';
export { default as unlink } from './unlink.js';
import { default as link } from './link.js';
import { default as unlink } from './unlink.js';
declare const _default: {
link: typeof link;
unlink: typeof unlink;
};
export default _default;