From f93f5deb2f117d6f629c9b47f1e594b39c822210 Mon Sep 17 00:00:00 2001 From: SiRanWeb Date: Sat, 29 Oct 2022 21:05:36 +0300 Subject: [PATCH] add ASObject description --- src/models/asObject/ASObject.model.ts | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/models/asObject/ASObject.model.ts b/src/models/asObject/ASObject.model.ts index a8ad586..0d4a3d5 100644 --- a/src/models/asObject/ASObject.model.ts +++ b/src/models/asObject/ASObject.model.ts @@ -1,6 +1,13 @@ import {ASBase} from "../ASBase.model"; import { ASObjectFields } from "./ASObject.types"; +/** + * Describes an object of any kind. The Object type serves as the base type for most of + * the other kinds of objects defined in the Activity Vocabulary, + * including other Core types such as Activity, IntransitiveActivity, Collection and OrderedCollection. + * + * {@link https://www.w3.org/ns/activitystreams#Object Docs} + */ export class ASObject extends ASBase{ constructor(fields: ASObjectFields) { super(fields);