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) • 487 B
TypeScript
import { ICreatorPreset, CreatorPresetBase } from "./presets-base";
import { SurveyCreatorModel } from "../creator-base";
export declare class CreatorPresetPropertyGridDefinition extends CreatorPresetBase {
getPath(): string;
protected applyEmptyJson(): boolean;
protected applyCore(creator: SurveyCreatorModel): void;
}
export declare class CreatorPresetPropertyGrid extends CreatorPresetBase {
getPath(): string;
protected createPresets(): Array<ICreatorPreset>;
}