Another fix to the TS types

pull/21833/head
Dariusz Niemczyk 2021-08-03 13:30:14 +02:00
parent 36efa448b2
commit 29e9db44a3
No known key found for this signature in database
GPG Key ID: 28DFE7164F497CB6
2 changed files with 2 additions and 2 deletions

View File

@ -57,7 +57,7 @@ interface IProps {
pipMode?: boolean; pipMode?: boolean;
// Used for dragging the PiP CallView // Used for dragging the PiP CallView
onMouseDownOnHeader?: (event: MouseEvent) => void; onMouseDownOnHeader?: (event: React.MouseEvent<Element, MouseEvent>) => void;
} }
interface IState { interface IState {

View File

@ -35,7 +35,7 @@ const PADDING = {
interface IProps { interface IProps {
className?: string; className?: string;
children: (startMovingEventHandler: (event: MouseEvent) => void) => React.ReactNode; children: (startMovingEventHandler: (event: React.MouseEvent<Element, MouseEvent>) => void) => React.ReactNode;
draggable: boolean; draggable: boolean;
app?: IApp; app?: IApp;
} }