survey-creator-core
Version:
Use SurveyJS Creator to create or edit JSON for SurveyJS Form Library.
16 lines (15 loc) • 521 B
TypeScript
import { ThemesHash } from "../utils/themes";
export interface ICreatorTheme {
themeName?: string;
iconSet?: string;
isLight?: boolean;
cssVariables?: {
[index: string]: string | any;
};
}
export declare const PredefinedCreatorThemes: string[];
export declare const defaultCreatorThemesOrder: string[];
export declare function registerCreatorTheme(...themes: Array<ThemesHash<ICreatorTheme> | ICreatorTheme>): void;
export declare const CreatorThemes: {
[index: string]: ICreatorTheme;
};