Skip to content

Commit

Permalink
Removed enum
Browse files Browse the repository at this point in the history
  • Loading branch information
FChapeau committed Sep 25, 2016
1 parent 9452916 commit ed85a05
Showing 1 changed file with 1 addition and 11 deletions.
12 changes: 1 addition & 11 deletions index.d.ts
Original file line number Diff line number Diff line change
@@ -1,24 +1,14 @@

import * as React from 'React';

enum ChartType {
doughnut = 'doughnut',
pie = 'pie',
line = 'line',
bar = 'bar',
horizontalBar = 'horizontalBar',
radar = 'radar',
polarArea = 'polarArea'
}

interface ChartComponentProps {
data :Object;
height? :number;
legend? :Object;
onElementsClick? :Function;
options? :Object;
redraw? :boolean;
type? :ChartType;
type? :String;
width? :number;
}

Expand Down

0 comments on commit ed85a05

Please sign in to comment.