Property 'close' does not exist on type 'MatDialog'.ts(2339) code example
Example: error TS2339: Property 'open' does not exist on type 'MatDialogModule'.
// dialog is of type MatDialog not MatDialogModule
//change
constructor(public dialog: MatDialogModule)
// to
constructor(public dialog: MatDialog)