UNPKG
@galaxyops/character-sheet-contracts
Version:
latest (0.1.0)
0.1.0
0.0.2
0.0.1
github.com/hxtree/galaxyops
hxtree/galaxyops
@galaxyops/character-sheet-contracts
/
src
/
types
/
item.ts
10 lines
(8 loc)
•
212 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
import
{
Outcome
}
from
'./table.effect'
;
import
{
SupplyItem
}
from
'./supply-item'
;
export
type
Item
=
SupplyItem
& {
/** * When the item is used, the outcome of the action. */
outcome
?:
Outcome
; };