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.

12 lines (11 loc) 432 B
import { ITheme } from "survey-core"; import { SurveyCreatorModel } from "../../creator-base"; import { PreviewViewModel } from "./preview"; export declare class ThemeTabViewModel extends PreviewViewModel { constructor(surveyProvider: SurveyCreatorModel, startThemeClasses: any); get currentTheme(): ITheme; get currentThemeCssVariables(): { [index: string]: string; }; protected getTabName(): string; }