UNPKG
kylin-ui-component
Version:
latest (0.0.2)
0.0.2
0.0.1
A React UI library for some developers to develop quickly
kylin-ui-component
/
dist
/
types
/
packages
/
components
/
Grid
/
RowContent.d.ts
10 lines
(9 loc)
•
289 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
/// <reference types="react" />
import
{
RowProps
}
from
'./type'
;
export
interface
RowContextState
{
gutter
?: [
number
,
number
];
wrap
?:
RowProps
[
'wrap'
];
supportFlexGap
?:
boolean
; }
declare
const
RowContext
:
import
(
"react"
).
Context
<
RowContextState
>;
export
default
RowContext
;