1 | import { 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 | */
|
9 | declare const _default: (diagnostics: Diagnostic[], showDiff?: boolean) => string;
|
10 | export default _default;
|