UNPKG
what-to-play
Version:
latest (1.0.0)
1.0.0
0.2.3
0.2.2
0.2.1
0.2.0
0.1.2
0.1.1
0.1.0
0.0.2
0.0.1
0.0.0
Score aggregator for lists of games
github.com/Deskbot/What-to-Play
Deskbot/What-to-Play
what-to-play
/
build
/
howlongtobeat.d.ts
11 lines
(10 loc)
•
277 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
export
interface
HowLongToBeatResult
{
name
:
string
;
times
: {
mainStory
?:
number
;
mainPlusExtra
?:
number
;
completionist
?:
number
; };
url
:
string
; }
export
declare
function
getData
(
game
:
string
):
Promise
<
HowLongToBeatResult
|
undefined
>;