UNPKG

z-react-ui

Version:

z-react-ui,是一款基于 Dumi,由 React + TypeScript 开发的组件库 🎉。

16 lines (15 loc) 602 B
import React from 'react'; import { MsgType } from '@/_utils/chat'; import { ChatListProps, ChatListForwardRef } from 'z-react-ui/src/chat-list'; import { SendMsgProps } from 'z-react-ui/src/send-msg'; export interface ChatDataSource { id: number | string; msgType: MsgType; [props: string]: any; } export interface FieldNames { } export declare type ChatPanelProps = ChatListProps & SendMsgProps; export declare type ForwardRef = ChatListForwardRef; declare const _default: React.ForwardRefExoticComponent<ChatListProps & SendMsgProps & React.RefAttributes<any>>; export default _default;