UNPKG

survey-creator-core

Version:

A framework-independent core package of the SurveyJS Survey Creator component. With Survey Creator, you can visually design complex, interactive JSON forms and surveys in a drag-and-drop interface.

17 lines (16 loc) 535 B
import { Base } from "survey-core"; import { SidebarModel } from "./side-bar-model"; export declare class SidebarPageModel extends Base { id: string; sidePanel: SidebarModel; locTileName: string; visible: boolean; componentData: any; componentName: string; activateCallback: () => void; deactivateCallback: () => void; private captionValue; constructor(id: string, sidePanel: SidebarModel, componentName?: string, componentData?: any); get caption(): string; set caption(val: string); }