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