@acrsolutions/chat-components
Version:
Un set di componenti per la creazione di un'applicazione di messaggistica
23 lines (22 loc) • 897 B
TypeScript
import type { ComponentProps } from 'react';
import { MessageTemplateSectionPreview } from './MessageTemplateSectionPreview';
export declare function MessageTemplatePreview({ isReceived, templateName, templateVariables, headerText, footerText, imgUrl, bodyText, sentDate, readDate, deliveredDate, reaction, }: {
isReceived: boolean;
templateName: string;
templateVariables?: {
key: string;
value: string;
}[];
headerText?: string | null;
footerText?: string | null;
imgUrl?: string;
bodyText: string;
searchString?: string;
onSearchRefs?: ComponentProps<typeof MessageTemplateSectionPreview>['onSearchRefs'];
focusedRefIndex?: number;
focusedKey?: string | null;
sentDate?: string | null;
readDate?: string | null;
deliveredDate?: string | null;
reaction?: string | null;
}): import("react/jsx-runtime").JSX.Element;