UNPKG
igdb-ts
Version:
latest (1.0.0)
1.0.0
Unofficial IGDB API TypeScript wrapper.
github.com/AaronWLChan/igdb-ts
AaronWLChan/igdb-ts
igdb-ts
/
src
/
types
/
utility
/
ImageOptions.ts
15 lines
(7 loc)
•
296 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
export
interface
ImageOptions
{
imageId
:
string
,
size
:
ImageSize
retina
?:
boolean
}
export
type
ImageSize
=
"cover_small"
|
"screenshot_med"
|
"cover_big"
|
"logo_med"
|
"screenshot_big"
|
"screenshot_huge"
|
"thumb"
|
"micro"
|
"720p"
|
"1080p"