UNPKG
@goteborgco/open-api-js-client
Version:
latest (1.0.4)
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
Official JavaScript client for the Göteborg & Co GraphQL API
@goteborgco/open-api-js-client
/
dist
/
entities
/
Image.d.ts
10 lines
(9 loc)
•
211 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
/** * Represents an image with dimensions and source URL */
export
declare
class
Image
{
readonly
width
:
number
;
readonly
height
:
number
;
readonly
source_url
:
string
;
constructor
(
data
:
any
); }