@adpt/core
Version:
AdaptJS core library
12 lines • 446 B
TypeScript
import { Compiler } from "./compile";
import { ChainableHost } from "./hosts";
export interface ExecOptions {
context?: any;
host?: ChainableHost;
compiler?: Compiler;
lineOffset?: number;
projectRoot?: string;
}
export declare function exec(rootFiles: string | string[], options: ExecOptions): any;
export declare function execString(code: string, context?: any, host?: ChainableHost): any;
//# sourceMappingURL=exec.d.ts.map