mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
8f273ce7a8
This will allow a multi-app application to listen to early events from different elements and place them on a separate field on the window. PR Close #55586
16 lines
598 B
TypeScript
16 lines
598 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
|
|
*/
|
|
|
|
export {Dispatcher, registerDispatcher} from './src/dispatcher';
|
|
export {EventContractContainer} from './src/event_contract_container';
|
|
export {EventContract} from './src/eventcontract';
|
|
export {bootstrapEventContract, bootstrapEarlyEventContract} from './src/register_events';
|
|
|
|
export type {EventContractTracker} from './src/register_events';
|
|
export {EventInfoWrapper} from './src/event_info';
|