mirror of
https://gitee.com/myxzgzs/boyue_jnpf.git
synced 2025-08-10 00:02:41 +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;
|