smart-compose-react
Version:
输入字符可以智能提醒,按一下 Tab 键位就可以快速输入智能提醒内容
10 lines (9 loc) • 337 B
TypeScript
import { ReactElement } from 'react';
type Props = {
children?: ReactElement;
onChange?: (value: string) => void;
suggestion?: string;
sugStyle?: string;
};
declare const SmartCompose: ({ children, suggestion, onChange, sugStyle }: Props) => import("react/jsx-runtime").JSX.Element;
export default SmartCompose;