blob: c7315bfdf941bf694a567fcdab6e348ae7ea54c6 [file] [log] [blame]
import 'dart:async';
import 'package:angular/angular.dart';
@Directive(selector: "[bubbled]", exportAs: 'bubble')
class BubbledDirective {
@Input("BubbleWidth") int width;
@Output() Stream popped;
}