import ts from "typescript"; import { CustomCompilerHost } from "./"; type Path = string; type Code = string; export interface EmitFileValueType { code: string; map?: string; diagnostics: readonly ts.Diagnostic[]; emitFiles: Record; } export declare function emitFileCode(this: CustomCompilerHost, fileName: string): EmitFileValueType; export {};