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) • 381 B
TypeScript
import { CreatorPresetBase } from "./presets-base";
import { SurveyCreatorModel } from "../creator-base";
export interface ICreatorPresetTab {
name: string;
iconName?: string;
}
export declare class CreatorPresetTabs extends CreatorPresetBase {
getPath(): string;
protected applyCore(creator: SurveyCreatorModel, internal?: boolean): void;
private applyTabs;
}