UNPKG
@xintao1105/rose-pie
Version:
latest (1.0.1)
1.0.1
1.0.0
```bash npm install @xintao1105/rose-pie ```
@xintao1105/rose-pie
/
dist
/
types
/
legendComponent.d.ts
11 lines
(10 loc)
•
295 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
type
{ interProps }
from
"./index"
;
interface
props {
key
:
string
;
data
:
any
[];
filterData
:
any
[];
params
: interProps;
onClick
:
(
e
:
any
) =>
void
; }
export
declare
const
LegendComponent
:
(
props
: props
) =>
import
(
"react/jsx-runtime"
).
JSX
.
Element
|
undefined
;
export
{};