Files
pnpm/src/api/index.ts
2017-10-02 22:53:57 +03:00

17 lines
326 B
TypeScript

export * from './install'
export * from './link'
export * from './prune'
export * from './unlink'
export * from './rebuild'
import link from './link'
import storeStatus from './storeStatus'
import storePrune from './storePrune'
import uninstall from './uninstall'
export {
link,
uninstall,
storeStatus,
storePrune,
}