survey-react-ui
Version:
survey.js is a JavaScript Survey Library. It is a modern way to add a survey to your website. It uses JSON for survey metadata and results.
16 lines (15 loc) • 498 B
TypeScript
import { Action, ActionContainer } from "survey-core";
import { SurveyElementBase } from "../../reactquestion_element";
interface IBreadcrumbsProps {
model: ActionContainer;
css: any;
}
export declare class SurveyBreadcrumbs extends SurveyElementBase<IBreadcrumbsProps, any> {
constructor(props: IBreadcrumbsProps);
protected getStateElement(): ActionContainer<Action>;
get items(): Action[];
get css(): any;
renderElement(): any;
renderItems(): any[];
}
export {};