UNPKG

@adpt/core

Version:
12 lines 446 B
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