UNPKG
kea-react
Version:
latest (1.1.55)
1.1.55
Componentes comunes de react
kea-react
/
src
/
grid2Base
/
filtros
/
rangoFechas.d.ts
8 lines
(7 loc)
•
259 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
import
{
GridColumnFilter
}
from
"../simpleGrid/tiposFiltros"
;
export
interface
FiltroRangoFechas
{
inicio
?:
Date
|
null
;
final
?:
Date
|
null
; }
/**Filtro ppr rango de fechas */
export
declare
const
filtro
:
GridColumnFilter
<
FiltroRangoFechas
>;