import {ASBase} from "../asBase/ASBase.model"; import {ASModelType} from "../../common/common.types"; import {ASEventFields} from "./ASEvent.types"; /** * Represents any kind of event * * {@link https://www.w3.org/ns/activitystreams#Event Docs} */ export class ASEvent extends ASBase{ constructor(fields: ASEventFields) { super({ type: ASModelType.Event, ...fields }) } }