mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
3d84c988cd
The change in the index is to allow the framework to add a type to the object that is passed from the contract to the dispatcher. ie registerDispatcher(contract, (eventInfo: EventInfoWrapper) => ...). The latter is to return the event contract so that tests can clean it up. PR Close #55411
14 lines
503 B
TypeScript
14 lines
503 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} from './src/register_events';
|
|
export {EventInfoWrapper} from './src/event_info';
|