UNPKG

vinmonopolet-ts

Version:

Extracts information on products, categories and stores from Vinmonopolet

13 lines (12 loc) 401 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); class ProductRelease { constructor(title, primaryCategoryName, url, image, releaseDate) { this.title = title; this.primaryCategoryName = primaryCategoryName; this.url = url; this.image = image; this.releaseDate = releaseDate; } } exports.default = ProductRelease;