Skip to content

Commit 97d3ed3

Browse files
vikermanjelbourn
authored andcommitted
fix(button): stop using Type from @angular (#991)
Type is becoming Type<?> in angular/angular#10616
1 parent 1bec551 commit 97d3ed3

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/components/button/button.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ import {
66
ChangeDetectionStrategy,
77
ElementRef,
88
Renderer,
9-
Type,
109
NgModule,
1110
} from '@angular/core';
1211
import {CommonModule} from '@angular/common';
@@ -158,7 +157,7 @@ export class MdAnchor extends MdButton {
158157

159158

160159
/** @deprecated */
161-
export const MD_BUTTON_DIRECTIVES: Type[] = [MdButton, MdAnchor];
160+
export const MD_BUTTON_DIRECTIVES: any[] = [MdButton, MdAnchor];
162161

163162

164163
@NgModule({

0 commit comments

Comments
 (0)