Skip to content

Commit

Permalink
fix(buttons): had incorrect import statement which breaks .d.ts and i…
Browse files Browse the repository at this point in the history
…mport
  • Loading branch information
valorkin committed Apr 28, 2016
1 parent 0db2b37 commit 67ee5b5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions components/buttons.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import {ButtonCheckboxDirective} from './buttons/button-checkbox.directive.ts';
import {ButtonRadioDirective} from './buttons/button-radio.directive.ts';
import {ButtonCheckboxDirective} from './buttons/button-checkbox.directive';
import {ButtonRadioDirective} from './buttons/button-radio.directive';

export {ButtonCheckboxDirective} from './buttons/button-checkbox.directive.ts';
export {ButtonRadioDirective} from './buttons/button-radio.directive.ts';
export {ButtonCheckboxDirective} from './buttons/button-checkbox.directive';
export {ButtonRadioDirective} from './buttons/button-radio.directive';
export const BUTTON_DIRECTIVES:Array<any> = [ButtonCheckboxDirective, ButtonRadioDirective];

0 comments on commit 67ee5b5

Please sign in to comment.