UNPKG

@ionic/app-scripts

Version:
15 lines (14 loc) 892 B
import { BuildContext, Diagnostic } from '../util/interfaces'; export declare function printDiagnostics(context: BuildContext, diagnosticsType: string, diagnostics: Diagnostic[], consoleLogDiagnostics: boolean, writeHtmlDiagnostics: boolean): void; export declare function clearDiagnosticsCache(): void; export declare function clearDiagnostics(context: BuildContext, type: string): void; export declare function hasDiagnostics(buildDir: string): boolean; export declare function injectDiagnosticsHtml(buildDir: string, content: any): any; export declare function getDiagnosticsHtmlContent(buildDir: string, includeDiagnosticsHtml?: string): string; export declare function generateDiagnosticHtml(d: Diagnostic): string; export declare function generateCodeBlock(d: Diagnostic): string; export declare const DiagnosticsType: { TypeScript: string; Sass: string; TsLint: string; };