Skip to content

Commit

Permalink
fix(button): stop using Type from @angular (#991)
Browse files Browse the repository at this point in the history
Type is becoming Type<?> in angular/angular#10616
  • Loading branch information
vikerman authored and jelbourn committed Aug 10, 2016
1 parent 1bec551 commit 97d3ed3
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/components/button/button.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ import {
ChangeDetectionStrategy,
ElementRef,
Renderer,
Type,
NgModule,
} from '@angular/core';
import {CommonModule} from '@angular/common';
Expand Down Expand Up @@ -158,7 +157,7 @@ export class MdAnchor extends MdButton {


/** @deprecated */
export const MD_BUTTON_DIRECTIVES: Type[] = [MdButton, MdAnchor];
export const MD_BUTTON_DIRECTIVES: any[] = [MdButton, MdAnchor];


@NgModule({
Expand Down

0 comments on commit 97d3ed3

Please sign in to comment.