UNPKG
raingame
Version:
latest (1.0.0)
1.0.0
2D game framework
github.com/awayel/Rain
awayel/Rain
raingame
/
src
/
interfaces
/
StandardObject.ts
7 lines
•
232 B
text/typescript
View Raw
1
2
3
4
5
6
7
import
{
StandarObjectOptions
}
from
'./StandarObjectOptions'
;
export
default
interface
CardOptions
extends
StandarObjectOptions
{
borderRadius
?:
number
,
text
?:
string
,
borderColor
?:
string
;
border
?:
boolean
; }