UNPKG

@dslate/antd

Version:

一个Antd Design风格的富文本编辑器 - A Antd Design style rich editor based on Slate

13 lines (11 loc) 362 B
import type { DSlateProps, ProgressProps, ShowCountProps } from '@dslate/core'; export interface AntdStyleDSlateProps extends DSlateProps { toolbar?: string[]; bordered?: boolean; showCounter?: boolean | ShowCountProps; disabled?: boolean; placeholder?: string; progress?: ProgressProps; className?: string; pluginProps?: Record<string, any>; }