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.
11 lines (10 loc) • 397 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;
protected get progressBarAriaLabel(): string;
render(): React.JSX.Element;
}