fix(ui): repair type definition of scrolltop fn
parent
17305cbb1d
commit
60167c0111
|
@ -1,5 +1,5 @@
|
||||||
// Libraries
|
// Libraries
|
||||||
import React, {Component} from 'react'
|
import React, {MouseEvent, Component} from 'react'
|
||||||
import classnames from 'classnames'
|
import classnames from 'classnames'
|
||||||
|
|
||||||
// Components
|
// Components
|
||||||
|
@ -12,7 +12,7 @@ interface Props {
|
||||||
fullWidth?: boolean
|
fullWidth?: boolean
|
||||||
scrollable?: boolean
|
scrollable?: boolean
|
||||||
inPresentationMode?: boolean
|
inPresentationMode?: boolean
|
||||||
setScrollTop?: () => void
|
setScrollTop?: (e: MouseEvent<HTMLElement>) => void
|
||||||
className?: string
|
className?: string
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue