Saxonberg Server API
    Preparing search index...

    Method contract a Subject-subscribing owner (Avatar) exposes.

    interface SubjectSubscriber {
        getSubjectSubscription(
            subjectId: string,
        ): SubjectSubscription | undefined;
        hasSubjectSubscription(subjectId: string): boolean;
        removeSubjectSubscription(subjectId: string): boolean;
        setSubjectSubscription(subjectId: string, sub: SubjectSubscription): void;
        subscribedSubjectIds(): string[];
    }
    Index

    Methods