mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-03-29 17:08:21 +08:00
Changed SelectedCell back to VisualizationSelectionArray
This commit is contained in:
@@ -438,15 +438,15 @@ declare module google {
|
||||
groupWidth: any; // number | string
|
||||
}
|
||||
|
||||
export interface SelectedCell {
|
||||
export interface VisualizationSelectionArray {
|
||||
column?: number;
|
||||
row?: number;
|
||||
}
|
||||
|
||||
class ChartBase {
|
||||
constructor(element: Element);
|
||||
getSelection(): SelectedCell[];
|
||||
setSelection(selection: SelectedCell[]): void;
|
||||
getSelection(): VisualizationSelectionArray[];
|
||||
setSelection(selection: VisualizationSelectionArray[]): void;
|
||||
clearChart(): void;
|
||||
getImageURI(): string;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user