mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
After the move of the `TransferState` logic, this file only contains a module that used to have the `TransferState` in provider list (but was refactored a while ago after `TransferState` became tree-shakable). PR Close #49222
21 lines
561 B
TypeScript
21 lines
561 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.io/license
|
|
*/
|
|
|
|
import {NgModule} from '@angular/core';
|
|
|
|
/**
|
|
* NgModule to install on the client side while using the `TransferState` to transfer state from
|
|
* server to client.
|
|
*
|
|
* @publicApi
|
|
* @deprecated no longer needed, you can inject the `TransferState` in an app without providing
|
|
* this module.
|
|
*/
|
|
@NgModule({})
|
|
export class BrowserTransferStateModule {
|
|
}
|