werewolf-core
Version:
Are you a WEREWOLF?
11 lines (10 loc) • 333 B
TypeScript
export interface Log {
type: string;
}
export declare const LOG_PHASE_TRANSITION: string;
export declare type PhaseType = 'day' | 'night';
export interface LogPhaseTransition extends Log {
day: number;
phase: PhaseType;
}
export declare function initLogPhaseTransition(day: number, phase: PhaseType): LogPhaseTransition;