UNPKG
kea-react
Version:
latest (1.1.55)
1.1.55
Componentes comunes de react
kea-react
/
src
/
grid2Base
/
simpleGrid
/
mappings.ts
6 lines
•
218 B
text/typescript
View Raw
1
2
3
4
5
6
import
{
ColumnMapping
}
from
"./gridState"
;
import
{
Grid2Column
}
from
"./column"
;
/**Devuelve si una columna se puede ocultar */
export
function
hideable
(
col
:
Grid2Column
<
any
,
any
>
) {
return
!!col.
title
; }