-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
- Loading branch information
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,10 @@ | ||
/// <reference types="node" /> | ||
import * as path from "path"; | ||
import * as tsTypes from "typescript"; | ||
export declare class FormatHost implements tsTypes.FormatDiagnosticsHost { | ||
getCurrentDirectory(): string; | ||
getCanonicalFileName(fileName: string): string; | ||
getNewLine(): string; | ||
getCanonicalFileName: typeof path.normalize; | ||
getNewLine: () => string; | ||
} | ||
export declare const formatHost: FormatHost; | ||
//# sourceMappingURL=diagnostics-format-host.d.ts.map |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
This file was deleted.
This file was deleted.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
import { IContext } from "./context"; | ||
import { IDiagnostics } from "./tscache"; | ||
export declare function printDiagnostics(context: IContext, diagnostics: IDiagnostics[], pretty: boolean): void; | ||
export declare function printDiagnostics(context: IContext, diagnostics: IDiagnostics[], pretty?: boolean): void; | ||
//# sourceMappingURL=print-diagnostics.d.ts.map |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.