UNPKG

edit-on-slate

Version:

Slate 기반의 직관적이고 강력한 리액트 텍스트 에디터 라이브러리

21 lines 511 B
import React from 'react'; import { Text, Element } from 'slate'; /** * Leaf content strings. */ declare const String: (props: { isLast: boolean; leaf: Text; parent: Element; text: Text; }) => React.JSX.Element; /** * Leaf strings without text, render as zero-width strings. */ export declare const ZeroWidthString: (props: { length?: number; isLineBreak?: boolean; isMarkPlaceholder?: boolean; }) => React.JSX.Element; export default String; //# sourceMappingURL=string.d.ts.map