Fix typing

This commit is contained in:
Florian Duros 2022-10-19 18:17:03 +02:00
parent e77f333fb6
commit 0a65d919a1
No known key found for this signature in database
GPG key ID: 9700AA5870258A0B
2 changed files with 4 additions and 6 deletions

View file

@ -22,10 +22,9 @@ import { WysiwygComposer } from './components/WysiwygComposer';
interface SendWysiwygComposerProps {
disabled?: boolean;
onChange?: (content: string) => void;
onChange: (content: string) => void;
onSend(): () => void;
}
interface ContentProps {
disabled: boolean;
formattingFunctions: FormattingFunctions;