mirror of
https://github.com/angular/angular-cli.git
synced 2025-05-18 03:23:57 +08:00
22 lines
554 B
TypeScript
22 lines
554 B
TypeScript
/**
|
|
* @license
|
|
* Copyright Google LLC 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.dev/license
|
|
*/
|
|
|
|
export * from './private_export';
|
|
|
|
export { AngularAppEngine } from './src/app-engine';
|
|
export { createRequestHandler } from './src/handler';
|
|
|
|
export {
|
|
type PrerenderFallback,
|
|
type ServerRoute,
|
|
provideServerRoutesConfig,
|
|
RenderMode,
|
|
} from './src/routes/route-config';
|
|
|
|
export { REQUEST, RESPONSE_INIT, REQUEST_CONTEXT } from './src/tokens';
|