survey-analytics
Version:
SurveyJS analytics Library.
34 lines (33 loc) • 1.11 kB
TypeScript
import { BooleanModel } from "../boolean";
import { SelectBase } from "../selectBase";
import { HistogramModel } from "../histogram";
import { Matrix } from "../matrix";
import { MatrixDropdownGrouped } from "../matrixDropdownGrouped";
import { PivotModel } from "../pivot";
import { NumberModel } from "../number";
import { RankingModel } from "../ranking";
export declare class SelectBasePlotly extends SelectBase {
static types: string[];
static displayModeBar: any;
}
export declare class BooleanPlotly extends BooleanModel {
static types: string[];
}
export declare class HistogramPlotly extends HistogramModel {
static types: string[];
}
export declare class MatrixPlotly extends Matrix {
static types: string[];
}
export declare class MatrixDropdownGroupedPlotly extends MatrixDropdownGrouped {
static types: string[];
}
export declare class PivotPlotly extends PivotModel {
static types: string[];
}
export declare class GaugePlotly extends NumberModel {
static displayModeBar: any;
static types: string[];
}
export declare class RankingPlotly extends RankingModel {
}