UNPKG

@goteborgco/open-api-js-client

Version:

Official JavaScript client for the Göteborg & Co GraphQL API

15 lines (14 loc) 343 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Image = void 0; /** * Represents an image with dimensions and source URL */ class Image { constructor(data) { this.width = data.width; this.height = data.height; this.source_url = data.source_url; } } exports.Image = Image;