UNPKG
@arkhas/inertia-datatable
Version:
latest (1.0.10)
1.0.10
1.0.9
1.0.8
1.0.7
1.0.6
1.0.1
1.0.0
A Laravel Inertia React Datatable component
@arkhas/inertia-datatable
/
dist
/
components
/
Datatable.d.ts
9 lines
(8 loc)
•
269 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
import
React
from
'react'
;
type
IconComponent
=
React
.
ComponentType
<
React
.
SVGProps
<
SVGSVGElement
>>;
interface
DatatableProps
{
route
?:
string
;
icons
?:
Record
<
string
,
IconComponent
>; }
declare
const
Datatable
:
React
.
FC
<
DatatableProps
>;
export
default
Datatable
;