UNPKG

@ant-design/x-markdown

Version:

placeholder for @ant-design/x-markdown

10 lines (9 loc) 337 B
import { StreamCacheTokenType, XMarkdownProps } from '../interface'; export interface StreamCache { pending: string; token: StreamCacheTokenType; processedLength: number; completeMarkdown: string; } declare const useStreaming: (input: string, config?: XMarkdownProps['streaming']) => string; export default useStreaming;