npm-check-extras
Version:
CLI app to check for outdated and unused dependencies, and run update/delete action over selected ones
13 lines (12 loc) • 493 B
TypeScript
type Props = {
readonly isShowPackages?: boolean;
readonly isStoreHistory?: boolean;
readonly isDevOnly?: boolean;
readonly isGlobal?: boolean;
readonly isProduction?: boolean;
readonly isSkipUnused?: boolean;
readonly isShowHistory?: boolean;
readonly isRevertUpdates?: boolean;
};
export default function App({ isShowPackages, isDevOnly, isProduction, isGlobal, isStoreHistory, isSkipUnused, isShowHistory, isRevertUpdates, }: Props): JSX.Element;
export {};