@urban-bot/core
Version:
The universal chatbot library based on React
9 lines (8 loc) • 481 B
TypeScript
import type { ReactNode } from 'react';
import type { UrbanMessageCommonData } from '../types';
export declare type TextProps = UrbanMessageCommonData & {
children: ReactNode;
disableWebPagePreview?: boolean;
isNewMessageEveryRender?: boolean;
};
export declare function Text({ children, isNewMessageEveryRender: isNewMessageEveryRenderProp, parseMode, disableWebPagePreview, disableNotification, replyToMessageId, forceReply, ...otherProps }: TextProps): JSX.Element;