Project

General

Profile

1
import { AotCompiler } from './compiler';
2
import { AotCompilerHost } from './compiler_host';
3
import { AotCompilerOptions } from './compiler_options';
4
import { StaticReflector } from './static_reflector';
5
/**
6
 * Creates a new AotCompiler based on options and a host.
7
 */
8
export declare function createAotCompiler(compilerHost: AotCompilerHost, options: AotCompilerOptions): {
9
    compiler: AotCompiler;
10
    reflector: StaticReflector;
11
};
(3-3/22)