TeaSpeak-Client/imports/shared-app/ui/frames/side/AbstractConversationRenderer.d.ts

10 lines
398 B
TypeScript
Raw Normal View History

2021-02-07 20:01:37 +01:00
import * as React from "react";
import { Registry } from "tc-shared/events";
import { AbstractConversationUiEvents } from "./AbstractConversationDefinitions";
export declare const ConversationPanel: React.MemoExoticComponent<(props: {
events: Registry<AbstractConversationUiEvents>;
handlerId: string;
messagesDeletable: boolean;
noFirstMessageOverlay: boolean;
}) => JSX.Element>;