mirror of
https://github.com/wassname/DefinitelyTyped.git
synced 2026-08-27 11:40:08 +08:00
Merge pull request #2861 from fivetran/google.visualization
small fixes to google.visualization
This commit is contained in:
+5
-5
@@ -14,8 +14,8 @@ declare module google {
|
||||
|
||||
export interface ChartSpecs {
|
||||
chartType: string;
|
||||
containerId: string;
|
||||
oprtions?: Object;
|
||||
containerId?: string;
|
||||
options?: Object;
|
||||
dataTable?: Object;
|
||||
dataSourceUrl?: string;
|
||||
query?: string;
|
||||
@@ -75,7 +75,7 @@ declare module google {
|
||||
addRows(rows: DataObjectCell[][]): number;
|
||||
addRows(rows: any[][]): number;
|
||||
clone(): DataTable;
|
||||
getColumnId(columnIndex: number): String;
|
||||
getColumnId(columnIndex: number): string;
|
||||
getColumnLabel(columnIndex: number): string;
|
||||
getColumnPattern(columnIndex: number): string;
|
||||
getColumnProperties(columnIndex: number): Properties;
|
||||
@@ -445,8 +445,8 @@ declare module google {
|
||||
|
||||
class ChartBase {
|
||||
constructor(element: Element);
|
||||
getSelection(): any[];
|
||||
setSelection(selection: any[]): void;
|
||||
getSelection(): VisualizationSelectionArray[];
|
||||
setSelection(selection: VisualizationSelectionArray[]): void;
|
||||
clearChart(): void;
|
||||
getImageURI(): string;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user