1 | /// <reference types="node" />
|
2 | import * as ts from 'typescript';
|
3 | import { Readable, Writable } from 'stream';
|
4 | export interface IncrementalCompiler {
|
5 | (token?: any): Readable & Writable;
|
6 | src(opts?: {
|
7 | cwd?: string;
|
8 | base?: string;
|
9 | }): Readable;
|
10 | }
|
11 | export declare function create(projectPath: string, existingOptions: Partial<ts.CompilerOptions>, verbose?: boolean, onError?: (message: string) => void): IncrementalCompiler;
|