UNPKG

npm-check-extras

Version:

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

8 lines (7 loc) 432 B
import type { HistoryItems, OperationItem } from './types.js'; declare const hasHistory: () => boolean; declare const getGroupedHistory: () => string; declare const getHistoryJson: () => HistoryItems; declare const getUpdatesHistory: () => HistoryItems; declare const formatHistoryData: (data: Record<string, any>) => OperationItem[]; export { getGroupedHistory, getHistoryJson, getUpdatesHistory, hasHistory, formatHistoryData, };