chatbot-frontend-package-test
Version:
AI chatbot frontend package of Offshorly - TEST VERSION
9 lines (8 loc) • 340 B
TypeScript
/// <reference types="react" />
type ClearConversationProps = {
filename: string;
showToast: boolean;
setshowSteps: React.Dispatch<React.SetStateAction<boolean>>;
};
declare const clearConversation: ({ filename, showToast, setshowSteps }: ClearConversationProps) => Promise<undefined>;
export default clearConversation;