UNPKG
decision-tree-maker
Version:
latest (0.0.9)
0.0.9
0.0.1
Decision tree maker lib
decision-tree-maker
/
lib
/
esm
/
decision-tree
/
TreeNodeElement
/
DeleteButton.d.ts
7 lines
(6 loc)
•
171 B
TypeScript
View Raw
1
2
3
4
5
6
7
import
{
FC
}
from
'react'
;
interface
DeleteButtonProps
{
onClick
:
() =>
void
; }
declare
const
DeleteButton
:
FC
<
DeleteButtonProps
>;
export
default
DeleteButton
;