export default class WebImage { constructor(public readonly url: string) { } public toString() { return this.url; } }