mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
Rename `BaseDispatcher` to `Dispatcher` and `Dispatcher` to `LegacyDispatcher`. The `GlobalHandler` type and `stopPropagation` function needs to be left for now in dispatcher.ts as it was not exported previously from legacy_dispatcher.ts. PR Close #55721
16 lines
648 B
TypeScript
16 lines
648 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 type {EarlyJsactionDataContainer} from './src/earlyeventcontract';
|
|
export {EventContract} from './src/eventcontract';
|
|
export {bootstrapEarlyEventContract} from './src/register_events';
|
|
|
|
export type {EventContractTracker} from './src/register_events';
|
|
export {EventInfoWrapper} from './src/event_info';
|