declare module fb { interface IFbD3BarChartScope extends ng.IScope { id: string; data: ID3BarChartBar[]; axisXName: string; axisYName: string; title: string; axisXTitle: string; axisYTitle: string; xAxisMaxValue: number; yAxisMaxValue: number; changeTracker: number; width: any; height: any; marginLeft: any; marginRight: any; } interface ID3BarChartBar extends Object { x: any; y: fb.ChangeTrack; } }