UNPKG

671 BTypeScriptView Raw
1import * as ts from 'typescript';
2import { OutputFile } from './interfaces';
3export declare function toUnix(fileName: string): string;
4export declare function findResultFor(fileName: string, output: ts.EmitOutput): OutputFile;
5export declare function codegenErrorReport(errors: any): any;
6export declare function formatError(diagnostic: any): string;
7export declare function formatMessageChain(chain: ts.DiagnosticMessageChain): string;
8export declare function formatLineChar(lineChar: any): string;
9export declare function loadLib(moduleId: any): {
10 fileName: string;
11 text: string;
12};
13export declare function withoutTypeScriptExtension(fileName: string): string;