import {ASBase} from "../asBase/ASBase.model"; import {ASModelType} from "../../common/common.types"; import {ImageFields} from "./Image.types"; /** * An image document of any kind * * {@link https://www.w3.org/ns/activitystreams#Image Docs} */ export class Image extends ASBase{ constructor(fields: ImageFields) { super({ type: ASModelType.Image, ...fields }) } }