UNPKG

@progress/kendo-react-editor

Version:
17 lines (16 loc) 468 B
import * as React from 'react'; import { ToolProps } from './ToolProps'; import { EditorToolsSettings } from './../config/toolsSettings'; /** * @hidden */ export interface CleanFormattingProps extends ToolProps { /** * The settings of the tool. Use it to modify the tool appearance. */ settings?: EditorToolsSettings.CleanFormattingSettings; } /** * @hidden */ export declare const CleanFormatting: React.FunctionComponent<CleanFormattingProps>;