UNPKG
werewolf-core
Version:
latest (0.0.1)
0.0.1
Are you a WEREWOLF?
werewolf-core
/
dist-typings
/
core
/
lib
/
choice.d.ts
8 lines
(7 loc)
•
217 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
import
{
Players
}
from
'../player'
;
export
interface
Choice
{
value
:
string
;
label
:
string
;
label_kind
:
'player'
|
'string'
; }
export
declare
function
alivePlayerOptions
(
players
:
Players
):
Array
<
Choice
>;