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) 392 B
import { Base, EventBase } from "survey-core"; import { ICreatorPresetConfig } from "./presets"; export declare class CreatorPresetsModel extends Base implements ICreatorPresetConfig { static defaultPresetName: string; getType(): string; presetName: string; onPresetSelected: EventBase<CreatorPresetsModel, { preset: ICreatorPresetConfig; }>; constructor(); }