declare module fb { interface IFbGraph extends ng.IScope { options: IFbGraphOptions; data: IFbGraphData[]; } interface IFbGraphOptions { graphType: number; width: number; height: number; label?: IFbGraphLabel; subLabel?: IFbGraphLabel; total?: number; thickness?: number; } interface IFbGraphData { value: any; color?: string; icon?: string[]; __isComplement?: boolean; } interface IFbGraphLabel { value: string; color?: string; } }