shiza-developer-chat-embed
Version:
Javascript library to display SHIZA Developer chatbot on your website
10 lines • 374 B
TypeScript
type FeedbackContentDialogProps = {
isOpen: boolean;
onClose: () => void;
onSubmit: (text: string) => void;
backgroundColor?: string;
textColor?: string;
};
declare const FeedbackContentDialog: (props: FeedbackContentDialogProps) => import("solid-js").JSX.Element;
export default FeedbackContentDialog;
//# sourceMappingURL=FeedbackContentDialog.d.ts.map