survey-angular-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.
15 lines (14 loc) • 670 B
TypeScript
import { ElementRef } from "@angular/core";
import { PageModel, SurveyModel } from "survey-core";
import { BaseAngular } from "./base-angular";
import * as i0 from "@angular/core";
export declare class PageComponent extends BaseAngular<PageModel> {
model: PageModel;
survey?: SurveyModel;
pageContainerRef: ElementRef<HTMLDivElement>;
protected getModel(): PageModel;
protected onModelChanged(): void;
ngAfterViewInit(): void;
static ɵfac: i0.ɵɵFactoryDeclaration<PageComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<PageComponent, "page, sv-ng-page", never, { "model": "model"; "survey": "survey"; }, {}, never, never>;
}