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) • 706 B
TypeScript
import { AfterViewInit, ElementRef } from "@angular/core";
import { PanelModel } from "survey-core";
import { BaseAngular } from "./base-angular";
import * as i0 from "@angular/core";
export declare class PanelComponent extends BaseAngular<PanelModel> implements AfterViewInit {
model: PanelModel;
panelContainerRef: ElementRef<HTMLDivElement>;
protected getModel(): PanelModel;
ngAfterViewInit(): void;
trackRowBy: (_: any, row: any) => any;
get canRender(): boolean;
static ɵfac: i0.ɵɵFactoryDeclaration<PanelComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<PanelComponent, "sv-ng-panel, '[sv-ng-panel]'", never, { "model": "model"; }, {}, never, never>;
}