fix(ui): repair type definition of scrolltop fn

pull/5871/head
Pavel Zavora 2022-02-24 17:12:07 +01:00
parent 17305cbb1d
commit 60167c0111
1 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
// Libraries
import React, {Component} from 'react'
import React, {MouseEvent, Component} from 'react'
import classnames from 'classnames'
// Components
@ -12,7 +12,7 @@ interface Props {
fullWidth?: boolean
scrollable?: boolean
inPresentationMode?: boolean
setScrollTop?: () => void
setScrollTop?: (e: MouseEvent<HTMLElement>) => void
className?: string
}