mirror of
https://gitee.com/myxzgzs/boyue_jnpf.git
synced 2025-08-09 15:52:42 +08:00
7 lines
220 B
TypeScript
7 lines
220 B
TypeScript
import * as ts from "typescript";
|
|
export interface CompileResult {
|
|
localSources: string[];
|
|
compiled: boolean;
|
|
}
|
|
export declare function tsCompile(fileNames: string[], options: ts.CompilerOptions): CompileResult;
|