UNPKG
react-jwchat
Version:
latest (1.5.1)
1.5.1
1.5.0
1.2.1
1.2.0
1.1.0
1.0.6
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
This is an easy-to-use web chat component, based on react.
wx_504ae56474.gitee.io/react-jwchat
react-jwchat
/
dist
/
esm
/
components
/
ScrollWrapper
/
index.d.ts
6 lines
(5 loc)
•
294 B
TypeScript
View Raw
1
2
3
4
5
6
import
React
from
'react'
;
import
{
IScrollWrapper
}
from
'../../types'
;
declare
type
HOC
<
InjectedProps
,
OwnProps
> = <P>
(
Component
:
React
.
ComponentType
<P &
InjectedProps
>
) =>
React
.
ComponentType
<P &
OwnProps
>;
declare
const
ScrollWrapper
:
HOC
<{},
IScrollWrapper
>;
export
default
ScrollWrapper
;