UNPKG

npm-check-updates

Version:

Find newer versions of dependencies than what your package.json allows

8 lines (7 loc) 248 B
/** Renders a table for the CLI or markdown. */ declare const table: ({ colAligns, markdown, rows, }: { colAligns?: ("left" | "right")[] | undefined; markdown?: boolean | undefined; rows: string[][]; }) => string; export default table;