tsd-check
Version:
Check TypeScript type definitions
10 lines (9 loc) • 301 B
TypeScript
import { Diagnostic } from './interfaces';
declare const _default: (diagnostics: Diagnostic[]) => any;
/**
* Format the TypeScript diagnostics to a human readable output.
*
* @param diagnostics - List of TypeScript diagnostics.
* @returns Beautiful diagnostics output
*/
export default _default;