UNPKG
@antv/s2-react-components
Version:
latest (2.1.2)
next (1.1.0-next.1)
2.1.2
2.1.1
2.1.0
2.0.1
2.0.0
1.1.0-next.1
1.0.1-next.1
1.0.0-next.1
React components for S2
s2.antv.antgroup.com
antvis/S2
@antv/s2-react-components
/
lib
/
components
/
frozen-panel
/
frozen-input-number
/
interface.d.ts
6 lines
(5 loc)
•
209 B
TypeScript
View Raw
1
2
3
4
5
6
import
type
{
InputNumberProps
}
from
'antd'
;
export
interface
FrozenInputNumberProps
extends
Omit
<
InputNumberProps
, 'value' | 'onChange'> {
value
:
number
|
null
;
onChange
?:
(
value
:
number
) =>
void
; }