10 lines
354 B
Dart
10 lines
354 B
Dart
|
/// A PSR-14 compatible event dispatcher interface for Dart.
|
||
|
///
|
||
|
/// This library provides interfaces for event dispatching systems
|
||
|
/// following the PSR-14 Event Dispatcher specification.
|
||
|
library event_dispatcher;
|
||
|
|
||
|
export 'src/event_dispatcher_interface.dart';
|
||
|
export 'src/listener_provider_interface.dart';
|
||
|
export 'src/stoppable_event_interface.dart';
|