vikerman 5c93a8800a fix(core): Share private types through an exported interface. ()
Instead of using declare namespace to share the types. This allows the generated code to be compiled with closure with full optimizations.
2016-08-23 16:18:11 -07:00

18 lines
722 B
TypeScript

/**
* @license
* Copyright Google Inc. All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.io/license
*/
import {__core_private_testing__ as r, __core_private_testing_types__ as types} from '@angular/core/testing';
export declare let _compiler_core_testing_types: types;
export type TestingCompiler = typeof _compiler_core_testing_types.TestingCompiler;
export var TestingCompiler: typeof r.TestingCompiler = r.TestingCompiler;
export type TestingCompilerFactory = typeof _compiler_core_testing_types.TestingCompilerFactory;
export var TestingCompilerFactory: typeof r.TestingCompilerFactory = r.TestingCompilerFactory;