UNPKG
poem_game_component
Version:
latest (1.0.2)
1.0.2
1.0.1
1.0.0
poem_game_component
/
src
/
domain
/
interfaces
/
GameRule.ts
4 lines
•
217 B
text/typescript
View Raw
1
2
3
4
export
interface
GameRule
{
validateAnswer
(
historyAnswers
:
string
[],
currentAnswer
:
string
,
initialCondition
:
string
): Promise<
boolean
>;
validateInitialCondition
(
initialCondition
:
string
): Promise<
boolean
>; }