add ASObject description

pull/1/head
SiRanWeb 2022-10-29 21:05:36 +03:00
rodzic 3185dc4f7b
commit f93f5deb2f
1 zmienionych plików z 7 dodań i 0 usunięć

Wyświetl plik

@ -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<ASObjectFields>{
constructor(fields: ASObjectFields) {
super(fields);