@dslate/semi
Version:
一个Semi Design风格的富文本编辑器 - A Semi Design style rich editor based on Slate
13 lines (11 loc) • 362 B
TypeScript
import type { DSlateProps, ProgressProps, ShowCountProps } from '@dslate/core';
export interface SemiStyleDSlateProps extends DSlateProps {
toolbar?: string[];
bordered?: boolean;
showCounter?: boolean | ShowCountProps;
disabled?: boolean;
placeholder?: string;
progress?: ProgressProps;
className?: string;
pluginProps?: Record<string, any>;
}