UNPKG
@90pixel/react-dynamic-table
Version:
latest (1.0.4)
1.0.4
1.0.3
1.0.1
1.0.0
Dynamic Table Element
github.com/90pixel/react-dynamic-table
90pixel/react-dynamic-table
@90pixel/react-dynamic-table
/
dist
/
index.d.ts
10 lines
(9 loc)
•
261 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
{
HTMLAttributes
}
from
"react"
;
interface
Props
extends
HTMLAttributes
<
HTMLDivElement
> {
/** * Test Naming */
type
:
"multiply"
|
"divide"
; }
declare
function
Component
(
{
type
, ...props }:
Props
):
JSX
.
Element
;
export
default
Component
;