mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
Fixed forgotten return type.
This commit is contained in:
parent
ccaf6162aa
commit
808cedd2ec
10
highcharts/highcharts.d.ts
vendored
10
highcharts/highcharts.d.ts
vendored
@ -191,11 +191,11 @@ interface HighchartsChartResetZoomButton {
|
||||
}
|
||||
|
||||
interface HighchartsChartResetZoomButtonTheme {
|
||||
fill?: string; //css HEX colours.
|
||||
stroke?: string;//css HEX colours.
|
||||
fill?: string; //css HEX colours.
|
||||
stroke?: string;//css HEX colours.
|
||||
r?: number; // Radius %
|
||||
states?: any; // HTML element states eg: hover, with css attributes in object.
|
||||
display?: string; // css attr eg: 'none'
|
||||
states?: any; // HTML element states eg: hover, with css attributes in object.
|
||||
display?: string; // css attr eg: 'none'
|
||||
}
|
||||
|
||||
interface HighchartsChartOptions {
|
||||
@ -1301,7 +1301,7 @@ interface HighchartsSeriesObject {
|
||||
remove(redraw?: boolean): void;
|
||||
select(selected?: boolean): void;
|
||||
selected: boolean;
|
||||
setData(data: number[] | number[][] | HighchartsDataPoint[], redraw?: boolean, animation?: boolean | HighchartsAnimation, updatePoints?: boolean);
|
||||
setData(data: number[] | number[][] | HighchartsDataPoint[], redraw?: boolean, animation?: boolean | HighchartsAnimation, updatePoints?: boolean): void;
|
||||
setVisible(visible: boolean, redraw?: boolean): void;
|
||||
show(): void;
|
||||
type: string;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user