survey-creator-core
Version:
Use SurveyJS Creator to create or edit JSON for SurveyJS Form Library.
14 lines (13 loc) • 448 B
TypeScript
import { Base } from "survey-core";
import { SidebarModel } from "./side-bar-model";
export declare class SidebarPageModel extends Base {
id: string;
sidePanel: SidebarModel;
caption: string;
visible: boolean;
componentData: any;
componentName: string;
activateCallback: () => void;
deactivateCallback: () => void;
constructor(id: string, sidePanel: SidebarModel, componentName?: string, componentData?: any);
}