UNPKG

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) 442 B
import * as React from "react"; interface IScrollComponentProps { children: React.ReactNode; disabled?: boolean; onInnerHeightChanged?: (hasScroll: boolean) => void; } export declare class Scroll extends React.Component<IScrollComponentProps, any> { private model; private rootRef; constructor(props: any); componentDidMount(): void; componentWillUnmount(): void; render(): React.JSX.Element; } export {};