dmeditor
Version:
dmeditor is a block-style visual editor. Data is in json format.
12 lines (11 loc) • 387 B
TypeScript
export interface StyleSettingProps {
blockType: string;
enabledStyles?: {
[styleIdentifier: string]: Array<string>;
};
values: {
[styleIdentifier: string]: string;
};
onChange: (optionIdentifier: string, styleIdentifier: string) => void;
}
export declare const StyleSettings: (props: StyleSettingProps) => import("react/jsx-runtime").JSX.Element;