0

I am new to angular2 and im using angular2-mdl for my project. i tried to implement custom dialog given in the http://mseemann.io/angular2-mdl/dialogs but i am not to get it work. I am getting errors

Cannot find name 'MdlDialogReference'. Property 'dialogService' does not exist on type 'AppComponent'

michael
  • 16,221
  • 7
  • 55
  • 60

1 Answers1

0

You can find a simple working example here: http://plnkr.co/edit/HgAvCnzkWAmK1NVxfEUM?p=preview

It's probably the missing dialogService property in you 'AppComponent':

constructor(private dialogService: MdlDialogService){
}