werewolf-core
Version:
Are you a WEREWOLF?
16 lines (15 loc) • 336 B
TypeScript
import { Choice } from './choice';
export interface OpenChoice {
kind: string;
options: Array<Choice>;
value: string | undefined;
}
export interface PlayerInfo {
id: string;
roleDisp: string | undefined;
dead: boolean | undefined;
choices: Array<OpenChoice>;
data: {
[key: string]: any;
};
}