UNPKG
okr-align-map
Version:
latest (1.0.1)
1.0.1
1.0.0
okr目标关系图,多对多层次图
okr-align-map
/
dist
/
types
/
components
/
card
/
index.d.ts
11 lines
(10 loc)
•
225 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
React
from
'react'
;
interface
ICard
{
id
:
number
;
count
:
number
;
style
:
React
.
CSSProperties
;
power
:
boolean
; [
key
:
string
]:
any
; }
declare
const
Card
:
React
.
FC
<
Partial
<
ICard
>>;
export
default
Card
;