UNPKG

401 BTypeScriptView Raw
1import { Diagnostic } from './interfaces';
2/**
3 * Format the TypeScript diagnostics to a human readable output.
4 *
5 * @param diagnostics - List of TypeScript diagnostics.
6 * @param showDiff - Display difference between expected and received types.
7 * @returns Beautiful diagnostics output
8 */
9declare const _default: (diagnostics: Diagnostic[], showDiff?: boolean) => string;
10export default _default;