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.
10 lines (9 loc) • 347 B
TypeScript
import * as React from "react";
import { SurveyNavigationBase } from "./reactSurveyNavigationBase";
export declare class SurveyProgress extends SurveyNavigationBase {
constructor(props: any);
protected get isTop(): boolean;
protected get progress(): number;
protected get progressText(): string;
render(): React.JSX.Element;
}