UNPKG

373 BTypeScriptView Raw
1import { BuildContext, Diagnostic } from '../util/interfaces';
2import * as ts from 'typescript';
3/**
4 * Ok, so formatting overkill, we know. But whatever, it makes for great
5 * error reporting within a terminal. So, yeah, let's code it up, shall we?
6 */
7export declare function runTypeScriptDiagnostics(context: BuildContext, tsDiagnostics: ts.Diagnostic[]): Diagnostic[];