UNPKG
@cocoy/kit-components
Version:
latest (1.0.0)
1.0.0
一些前端组件
@cocoy/kit-components
/
dist
/
MangoProTable
/
components
/
Status
/
index.d.ts
12 lines
(11 loc)
•
240 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
type
StatusProps
= {
value
:
string
|
number
;
map
: {
label
:
string
;
value
:
number
|
string
;
color
:
string
; [
key
:
string
]:
any
; }[]; };
declare
const
Status
:
FC
<
StatusProps
>;
export
default
Status
;