19 lines
609 B
TypeScript
19 lines
609 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 {INTERNAL_SERVER_PLATFORM_PROVIDERS, SERVER_RENDER_PROVIDERS} from './server';
|
|
|
|
export var __platform_server_private__: {
|
|
INTERNAL_SERVER_PLATFORM_PROVIDERS: typeof INTERNAL_SERVER_PLATFORM_PROVIDERS,
|
|
SERVER_RENDER_PROVIDERS: typeof SERVER_RENDER_PROVIDERS,
|
|
} = {
|
|
INTERNAL_SERVER_PLATFORM_PROVIDERS: INTERNAL_SERVER_PLATFORM_PROVIDERS,
|
|
SERVER_RENDER_PROVIDERS: SERVER_RENDER_PROVIDERS,
|
|
};
|