mirror of
https://github.com/ezolenko/rollup-plugin-typescript2.git
synced 2025-12-08 19:06:16 +00:00
10 lines
389 B
TypeScript
10 lines
389 B
TypeScript
/// <reference types="node" />
|
|
import * as path from "path";
|
|
import * as tsTypes from "typescript";
|
|
export declare class FormatHost implements tsTypes.FormatDiagnosticsHost {
|
|
getCurrentDirectory(): string;
|
|
getCanonicalFileName: typeof path.normalize;
|
|
getNewLine: () => string;
|
|
}
|
|
export declare const formatHost: FormatHost;
|
|
//# sourceMappingURL=diagnostics-format-host.d.ts.map
|