UNPKG

npm-check-extras

Version:

CLI app to check for outdated and unused dependencies, and run update/delete action over selected ones

12 lines (11 loc) 436 B
type Props = { readonly isShowPackages?: boolean; readonly isStoreHistory?: boolean; readonly isDevOnly?: boolean; readonly isGlobal?: boolean; readonly isProduction?: boolean; readonly isSkipUnused?: boolean; readonly isShowHistory?: boolean; }; export default function App({ isShowPackages, isDevOnly, isProduction, isGlobal, isStoreHistory, isSkipUnused, isShowHistory, }: Props): JSX.Element; export {};