@fedify/vocab 2.0.7 → 2.0.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/mod.d.ts CHANGED
@@ -3,7 +3,6 @@ import { Span, TracerProvider } from "@opentelemetry/api";
3
3
  import { DocumentLoader, DocumentLoader as DocumentLoader$1, GetUserAgentOptions, GetUserAgentOptions as GetUserAgentOptions$1, LanguageString, LanguageString as LanguageString$1, RemoteDocument } from "@fedify/vocab-runtime";
4
4
 
5
5
  //#region src/vocab.d.ts
6
-
7
6
  /** Describes an object of any kind. The Object type serves as the base type for
8
7
  * most of the other kinds of objects defined in the Activity Vocabulary,
9
8
  * including other Core types such as {@link Activity},
@@ -804,7 +803,7 @@ declare class Emoji extends Object$1 {
804
803
  /**
805
804
  * The type URI of {@link Emoji}: `http://joinmastodon.org/ns#Emoji`.
806
805
  */
807
- static get typeId(): URL;
806
+ static override get typeId(): URL;
808
807
  /**
809
808
  * Constructs a new instance of Emoji with the given values.
810
809
  * @param values The values to initialize the instance with.
@@ -871,7 +870,7 @@ declare class Emoji extends Object$1 {
871
870
  * @param options The options to use for cloning.
872
871
  * @returns The cloned instance.
873
872
  */
874
- clone(values?: {
873
+ override clone(values?: {
875
874
  id?: URL | null;
876
875
  attachments?: (Object$1 | Link | PropertyValue | URL)[];
877
876
  attribution?: Application | Group | Organization | Person | Service | URL | null;
@@ -935,12 +934,12 @@ declare class Emoji extends Object$1 {
935
934
  when `format` is set to `'expand'`.
936
935
  * @returns The JSON-LD representation of this object.
937
936
  */
938
- toJsonLd(options?: {
937
+ override toJsonLd(options?: {
939
938
  format?: "compact" | "expand";
940
939
  contextLoader?: DocumentLoader$1;
941
940
  context?: string | Record<string, string> | (string | Record<string, string>)[];
942
941
  }): Promise<unknown>;
943
- protected isCompactable(): boolean;
942
+ protected override isCompactable(): boolean;
944
943
  /**
945
944
  * Converts a JSON-LD structure to an object of this type.
946
945
  * @param json The JSON-LD structure to convert.
@@ -952,7 +951,7 @@ declare class Emoji extends Object$1 {
952
951
  * @returns The object of this type.
953
952
  * @throws {TypeError} If the given `json` is invalid.
954
953
  */
955
- static fromJsonLd(json: unknown, options?: {
954
+ static override fromJsonLd(json: unknown, options?: {
956
955
  documentLoader?: DocumentLoader$1;
957
956
  contextLoader?: DocumentLoader$1;
958
957
  tracerProvider?: TracerProvider;
@@ -964,7 +963,7 @@ declare class Emoji extends Object$1 {
964
963
  tracerProvider?: TracerProvider;
965
964
  baseUrl?: URL;
966
965
  }): Promise<Emoji>;
967
- protected _getCustomInspectProxy(): Record<string, unknown>;
966
+ protected override _getCustomInspectProxy(): Record<string, unknown>;
968
967
  }
969
968
  /** `ChatMessage`s are the messages sent in 1-on-1 chats. They are similar to
970
969
  * {@link Note}s, but the addressing is done by having a single AP actor in
@@ -977,7 +976,7 @@ declare class ChatMessage extends Object$1 {
977
976
  /**
978
977
  * The type URI of {@link ChatMessage}: `http://litepub.social/ns#ChatMessage`.
979
978
  */
980
- static get typeId(): URL;
979
+ static override get typeId(): URL;
981
980
  /**
982
981
  * Constructs a new instance of ChatMessage with the given values.
983
982
  * @param values The values to initialize the instance with.
@@ -1045,7 +1044,7 @@ declare class ChatMessage extends Object$1 {
1045
1044
  * @param options The options to use for cloning.
1046
1045
  * @returns The cloned instance.
1047
1046
  */
1048
- clone(values?: {
1047
+ override clone(values?: {
1049
1048
  id?: URL | null;
1050
1049
  attachments?: (Object$1 | Link | PropertyValue | URL)[];
1051
1050
  attribution?: Application | Group | Organization | Person | Service | URL | null;
@@ -1122,12 +1121,12 @@ declare class ChatMessage extends Object$1 {
1122
1121
  when `format` is set to `'expand'`.
1123
1122
  * @returns The JSON-LD representation of this object.
1124
1123
  */
1125
- toJsonLd(options?: {
1124
+ override toJsonLd(options?: {
1126
1125
  format?: "compact" | "expand";
1127
1126
  contextLoader?: DocumentLoader$1;
1128
1127
  context?: string | Record<string, string> | (string | Record<string, string>)[];
1129
1128
  }): Promise<unknown>;
1130
- protected isCompactable(): boolean;
1129
+ protected override isCompactable(): boolean;
1131
1130
  /**
1132
1131
  * Converts a JSON-LD structure to an object of this type.
1133
1132
  * @param json The JSON-LD structure to convert.
@@ -1139,7 +1138,7 @@ declare class ChatMessage extends Object$1 {
1139
1138
  * @returns The object of this type.
1140
1139
  * @throws {TypeError} If the given `json` is invalid.
1141
1140
  */
1142
- static fromJsonLd(json: unknown, options?: {
1141
+ static override fromJsonLd(json: unknown, options?: {
1143
1142
  documentLoader?: DocumentLoader$1;
1144
1143
  contextLoader?: DocumentLoader$1;
1145
1144
  tracerProvider?: TracerProvider;
@@ -1151,7 +1150,7 @@ declare class ChatMessage extends Object$1 {
1151
1150
  tracerProvider?: TracerProvider;
1152
1151
  baseUrl?: URL;
1153
1152
  }): Promise<ChatMessage>;
1154
- protected _getCustomInspectProxy(): Record<string, unknown>;
1153
+ protected override _getCustomInspectProxy(): Record<string, unknown>;
1155
1154
  }
1156
1155
  /** An Activity is a subtype of {@link Object} that describes some form of action
1157
1156
  * that may happen, is currently happening, or has already happened.
@@ -1164,7 +1163,7 @@ declare class Activity extends Object$1 {
1164
1163
  /**
1165
1164
  * The type URI of {@link Activity}: `https://www.w3.org/ns/activitystreams#Activity`.
1166
1165
  */
1167
- static get typeId(): URL;
1166
+ static override get typeId(): URL;
1168
1167
  /**
1169
1168
  * Constructs a new instance of Activity with the given values.
1170
1169
  * @param values The values to initialize the instance with.
@@ -1243,7 +1242,7 @@ declare class Activity extends Object$1 {
1243
1242
  * @param options The options to use for cloning.
1244
1243
  * @returns The cloned instance.
1245
1244
  */
1246
- clone(values?: {
1245
+ override clone(values?: {
1247
1246
  id?: URL | null;
1248
1247
  attachments?: (Object$1 | Link | PropertyValue | URL)[];
1249
1248
  attribution?: Application | Group | Organization | Person | Service | URL | null;
@@ -1529,12 +1528,12 @@ declare class Activity extends Object$1 {
1529
1528
  when `format` is set to `'expand'`.
1530
1529
  * @returns The JSON-LD representation of this object.
1531
1530
  */
1532
- toJsonLd(options?: {
1531
+ override toJsonLd(options?: {
1533
1532
  format?: "compact" | "expand";
1534
1533
  contextLoader?: DocumentLoader$1;
1535
1534
  context?: string | Record<string, string> | (string | Record<string, string>)[];
1536
1535
  }): Promise<unknown>;
1537
- protected isCompactable(): boolean;
1536
+ protected override isCompactable(): boolean;
1538
1537
  /**
1539
1538
  * Converts a JSON-LD structure to an object of this type.
1540
1539
  * @param json The JSON-LD structure to convert.
@@ -1546,7 +1545,7 @@ declare class Activity extends Object$1 {
1546
1545
  * @returns The object of this type.
1547
1546
  * @throws {TypeError} If the given `json` is invalid.
1548
1547
  */
1549
- static fromJsonLd(json: unknown, options?: {
1548
+ static override fromJsonLd(json: unknown, options?: {
1550
1549
  documentLoader?: DocumentLoader$1;
1551
1550
  contextLoader?: DocumentLoader$1;
1552
1551
  tracerProvider?: TracerProvider;
@@ -1558,7 +1557,7 @@ declare class Activity extends Object$1 {
1558
1557
  tracerProvider?: TracerProvider;
1559
1558
  baseUrl?: URL;
1560
1559
  }): Promise<Activity>;
1561
- protected _getCustomInspectProxy(): Record<string, unknown>;
1560
+ protected override _getCustomInspectProxy(): Record<string, unknown>;
1562
1561
  }
1563
1562
  /** Represents an emoji reaction. See also [FEP-c0e0](https://w3id.org/fep/c0e0).
1564
1563
  */
@@ -1566,7 +1565,7 @@ declare class EmojiReact extends Activity {
1566
1565
  /**
1567
1566
  * The type URI of {@link EmojiReact}: `http://litepub.social/ns#EmojiReact`.
1568
1567
  */
1569
- static get typeId(): URL;
1568
+ static override get typeId(): URL;
1570
1569
  /**
1571
1570
  * Constructs a new instance of EmojiReact with the given values.
1572
1571
  * @param values The values to initialize the instance with.
@@ -1645,7 +1644,7 @@ declare class EmojiReact extends Activity {
1645
1644
  * @param options The options to use for cloning.
1646
1645
  * @returns The cloned instance.
1647
1646
  */
1648
- clone(values?: {
1647
+ override clone(values?: {
1649
1648
  id?: URL | null;
1650
1649
  attachments?: (Object$1 | Link | PropertyValue | URL)[];
1651
1650
  attribution?: Application | Group | Organization | Person | Service | URL | null;
@@ -1721,12 +1720,12 @@ declare class EmojiReact extends Activity {
1721
1720
  when `format` is set to `'expand'`.
1722
1721
  * @returns The JSON-LD representation of this object.
1723
1722
  */
1724
- toJsonLd(options?: {
1723
+ override toJsonLd(options?: {
1725
1724
  format?: "compact" | "expand";
1726
1725
  contextLoader?: DocumentLoader$1;
1727
1726
  context?: string | Record<string, string> | (string | Record<string, string>)[];
1728
1727
  }): Promise<unknown>;
1729
- protected isCompactable(): boolean;
1728
+ protected override isCompactable(): boolean;
1730
1729
  /**
1731
1730
  * Converts a JSON-LD structure to an object of this type.
1732
1731
  * @param json The JSON-LD structure to convert.
@@ -1738,7 +1737,7 @@ declare class EmojiReact extends Activity {
1738
1737
  * @returns The object of this type.
1739
1738
  * @throws {TypeError} If the given `json` is invalid.
1740
1739
  */
1741
- static fromJsonLd(json: unknown, options?: {
1740
+ static override fromJsonLd(json: unknown, options?: {
1742
1741
  documentLoader?: DocumentLoader$1;
1743
1742
  contextLoader?: DocumentLoader$1;
1744
1743
  tracerProvider?: TracerProvider;
@@ -1750,7 +1749,7 @@ declare class EmojiReact extends Activity {
1750
1749
  tracerProvider?: TracerProvider;
1751
1750
  baseUrl?: URL;
1752
1751
  }): Promise<EmojiReact>;
1753
- protected _getCustomInspectProxy(): Record<string, unknown>;
1752
+ protected override _getCustomInspectProxy(): Record<string, unknown>;
1754
1753
  }
1755
1754
  /** A pair of property name and value.
1756
1755
  */
@@ -1951,7 +1950,7 @@ declare class Export extends DidService {
1951
1950
  /**
1952
1951
  * The type URI of {@link Export}: `https://w3id.org/fep/9091#Export`.
1953
1952
  */
1954
- static get typeId(): URL;
1953
+ static override get typeId(): URL;
1955
1954
  /**
1956
1955
  * Constructs a new instance of Export with the given values.
1957
1956
  * @param values The values to initialize the instance with.
@@ -1972,7 +1971,7 @@ declare class Export extends DidService {
1972
1971
  * @param options The options to use for cloning.
1973
1972
  * @returns The cloned instance.
1974
1973
  */
1975
- clone(values?: {
1974
+ override clone(values?: {
1976
1975
  id?: URL | null;
1977
1976
  endpoint?: URL | null;
1978
1977
  endpoints?: (URL)[];
@@ -1990,12 +1989,12 @@ declare class Export extends DidService {
1990
1989
  when `format` is set to `'expand'`.
1991
1990
  * @returns The JSON-LD representation of this object.
1992
1991
  */
1993
- toJsonLd(options?: {
1992
+ override toJsonLd(options?: {
1994
1993
  format?: "compact" | "expand";
1995
1994
  contextLoader?: DocumentLoader$1;
1996
1995
  context?: string | Record<string, string> | (string | Record<string, string>)[];
1997
1996
  }): Promise<unknown>;
1998
- protected isCompactable(): boolean;
1997
+ protected override isCompactable(): boolean;
1999
1998
  /**
2000
1999
  * Converts a JSON-LD structure to an object of this type.
2001
2000
  * @param json The JSON-LD structure to convert.
@@ -2007,7 +2006,7 @@ declare class Export extends DidService {
2007
2006
  * @returns The object of this type.
2008
2007
  * @throws {TypeError} If the given `json` is invalid.
2009
2008
  */
2010
- static fromJsonLd(json: unknown, options?: {
2009
+ static override fromJsonLd(json: unknown, options?: {
2011
2010
  documentLoader?: DocumentLoader$1;
2012
2011
  contextLoader?: DocumentLoader$1;
2013
2012
  tracerProvider?: TracerProvider;
@@ -2019,7 +2018,7 @@ declare class Export extends DidService {
2019
2018
  tracerProvider?: TracerProvider;
2020
2019
  baseUrl?: URL;
2021
2020
  }): Promise<Export>;
2022
- protected _getCustomInspectProxy(): Record<string, unknown>;
2021
+ protected override _getCustomInspectProxy(): Record<string, unknown>;
2023
2022
  }
2024
2023
  /** A proof that can be added to any activity or object, allowing recipients to
2025
2024
  * verify the identity of the actor and the integrity of the data.
@@ -2378,7 +2377,7 @@ declare class Accept extends Activity {
2378
2377
  /**
2379
2378
  * The type URI of {@link Accept}: `https://www.w3.org/ns/activitystreams#Accept`.
2380
2379
  */
2381
- static get typeId(): URL;
2380
+ static override get typeId(): URL;
2382
2381
  /**
2383
2382
  * Constructs a new instance of Accept with the given values.
2384
2383
  * @param values The values to initialize the instance with.
@@ -2457,7 +2456,7 @@ declare class Accept extends Activity {
2457
2456
  * @param options The options to use for cloning.
2458
2457
  * @returns The cloned instance.
2459
2458
  */
2460
- clone(values?: {
2459
+ override clone(values?: {
2461
2460
  id?: URL | null;
2462
2461
  attachments?: (Object$1 | Link | PropertyValue | URL)[];
2463
2462
  attribution?: Application | Group | Organization | Person | Service | URL | null;
@@ -2533,12 +2532,12 @@ declare class Accept extends Activity {
2533
2532
  when `format` is set to `'expand'`.
2534
2533
  * @returns The JSON-LD representation of this object.
2535
2534
  */
2536
- toJsonLd(options?: {
2535
+ override toJsonLd(options?: {
2537
2536
  format?: "compact" | "expand";
2538
2537
  contextLoader?: DocumentLoader$1;
2539
2538
  context?: string | Record<string, string> | (string | Record<string, string>)[];
2540
2539
  }): Promise<unknown>;
2541
- protected isCompactable(): boolean;
2540
+ protected override isCompactable(): boolean;
2542
2541
  /**
2543
2542
  * Converts a JSON-LD structure to an object of this type.
2544
2543
  * @param json The JSON-LD structure to convert.
@@ -2550,7 +2549,7 @@ declare class Accept extends Activity {
2550
2549
  * @returns The object of this type.
2551
2550
  * @throws {TypeError} If the given `json` is invalid.
2552
2551
  */
2553
- static fromJsonLd(json: unknown, options?: {
2552
+ static override fromJsonLd(json: unknown, options?: {
2554
2553
  documentLoader?: DocumentLoader$1;
2555
2554
  contextLoader?: DocumentLoader$1;
2556
2555
  tracerProvider?: TracerProvider;
@@ -2562,7 +2561,7 @@ declare class Accept extends Activity {
2562
2561
  tracerProvider?: TracerProvider;
2563
2562
  baseUrl?: URL;
2564
2563
  }): Promise<Accept>;
2565
- protected _getCustomInspectProxy(): Record<string, unknown>;
2564
+ protected override _getCustomInspectProxy(): Record<string, unknown>;
2566
2565
  }
2567
2566
  /** Indicates that the `actor` has added the `object` to the `target`.
2568
2567
  * If the `target` property is not explicitly specified, the target would need
@@ -2573,7 +2572,7 @@ declare class Add extends Activity {
2573
2572
  /**
2574
2573
  * The type URI of {@link Add}: `https://www.w3.org/ns/activitystreams#Add`.
2575
2574
  */
2576
- static get typeId(): URL;
2575
+ static override get typeId(): URL;
2577
2576
  /**
2578
2577
  * Constructs a new instance of Add with the given values.
2579
2578
  * @param values The values to initialize the instance with.
@@ -2652,7 +2651,7 @@ declare class Add extends Activity {
2652
2651
  * @param options The options to use for cloning.
2653
2652
  * @returns The cloned instance.
2654
2653
  */
2655
- clone(values?: {
2654
+ override clone(values?: {
2656
2655
  id?: URL | null;
2657
2656
  attachments?: (Object$1 | Link | PropertyValue | URL)[];
2658
2657
  attribution?: Application | Group | Organization | Person | Service | URL | null;
@@ -2728,12 +2727,12 @@ declare class Add extends Activity {
2728
2727
  when `format` is set to `'expand'`.
2729
2728
  * @returns The JSON-LD representation of this object.
2730
2729
  */
2731
- toJsonLd(options?: {
2730
+ override toJsonLd(options?: {
2732
2731
  format?: "compact" | "expand";
2733
2732
  contextLoader?: DocumentLoader$1;
2734
2733
  context?: string | Record<string, string> | (string | Record<string, string>)[];
2735
2734
  }): Promise<unknown>;
2736
- protected isCompactable(): boolean;
2735
+ protected override isCompactable(): boolean;
2737
2736
  /**
2738
2737
  * Converts a JSON-LD structure to an object of this type.
2739
2738
  * @param json The JSON-LD structure to convert.
@@ -2745,7 +2744,7 @@ declare class Add extends Activity {
2745
2744
  * @returns The object of this type.
2746
2745
  * @throws {TypeError} If the given `json` is invalid.
2747
2746
  */
2748
- static fromJsonLd(json: unknown, options?: {
2747
+ static override fromJsonLd(json: unknown, options?: {
2749
2748
  documentLoader?: DocumentLoader$1;
2750
2749
  contextLoader?: DocumentLoader$1;
2751
2750
  tracerProvider?: TracerProvider;
@@ -2757,7 +2756,7 @@ declare class Add extends Activity {
2757
2756
  tracerProvider?: TracerProvider;
2758
2757
  baseUrl?: URL;
2759
2758
  }): Promise<Add>;
2760
- protected _getCustomInspectProxy(): Record<string, unknown>;
2759
+ protected override _getCustomInspectProxy(): Record<string, unknown>;
2761
2760
  }
2762
2761
  /** Indicates that the `actor` is calling the `target`'s attention the `object`.
2763
2762
  *
@@ -2767,7 +2766,7 @@ declare class Announce extends Activity {
2767
2766
  /**
2768
2767
  * The type URI of {@link Announce}: `https://www.w3.org/ns/activitystreams#Announce`.
2769
2768
  */
2770
- static get typeId(): URL;
2769
+ static override get typeId(): URL;
2771
2770
  /**
2772
2771
  * Constructs a new instance of Announce with the given values.
2773
2772
  * @param values The values to initialize the instance with.
@@ -2846,7 +2845,7 @@ declare class Announce extends Activity {
2846
2845
  * @param options The options to use for cloning.
2847
2846
  * @returns The cloned instance.
2848
2847
  */
2849
- clone(values?: {
2848
+ override clone(values?: {
2850
2849
  id?: URL | null;
2851
2850
  attachments?: (Object$1 | Link | PropertyValue | URL)[];
2852
2851
  attribution?: Application | Group | Organization | Person | Service | URL | null;
@@ -2922,12 +2921,12 @@ declare class Announce extends Activity {
2922
2921
  when `format` is set to `'expand'`.
2923
2922
  * @returns The JSON-LD representation of this object.
2924
2923
  */
2925
- toJsonLd(options?: {
2924
+ override toJsonLd(options?: {
2926
2925
  format?: "compact" | "expand";
2927
2926
  contextLoader?: DocumentLoader$1;
2928
2927
  context?: string | Record<string, string> | (string | Record<string, string>)[];
2929
2928
  }): Promise<unknown>;
2930
- protected isCompactable(): boolean;
2929
+ protected override isCompactable(): boolean;
2931
2930
  /**
2932
2931
  * Converts a JSON-LD structure to an object of this type.
2933
2932
  * @param json The JSON-LD structure to convert.
@@ -2939,7 +2938,7 @@ declare class Announce extends Activity {
2939
2938
  * @returns The object of this type.
2940
2939
  * @throws {TypeError} If the given `json` is invalid.
2941
2940
  */
2942
- static fromJsonLd(json: unknown, options?: {
2941
+ static override fromJsonLd(json: unknown, options?: {
2943
2942
  documentLoader?: DocumentLoader$1;
2944
2943
  contextLoader?: DocumentLoader$1;
2945
2944
  tracerProvider?: TracerProvider;
@@ -2951,7 +2950,7 @@ declare class Announce extends Activity {
2951
2950
  tracerProvider?: TracerProvider;
2952
2951
  baseUrl?: URL;
2953
2952
  }): Promise<Announce>;
2954
- protected _getCustomInspectProxy(): Record<string, unknown>;
2953
+ protected override _getCustomInspectProxy(): Record<string, unknown>;
2955
2954
  }
2956
2955
  /** Describes a software application.
2957
2956
  */
@@ -2960,7 +2959,7 @@ declare class Application extends Object$1 {
2960
2959
  /**
2961
2960
  * The type URI of {@link Application}: `https://www.w3.org/ns/activitystreams#Application`.
2962
2961
  */
2963
- static get typeId(): URL;
2962
+ static override get typeId(): URL;
2964
2963
  /**
2965
2964
  * Constructs a new instance of Application with the given values.
2966
2965
  * @param values The values to initialize the instance with.
@@ -3054,7 +3053,7 @@ declare class Application extends Object$1 {
3054
3053
  * @param options The options to use for cloning.
3055
3054
  * @returns The cloned instance.
3056
3055
  */
3057
- clone(values?: {
3056
+ override clone(values?: {
3058
3057
  id?: URL | null;
3059
3058
  attachments?: (Object$1 | Link | PropertyValue | URL)[];
3060
3059
  attribution?: Application | Group | Organization | Person | Service | URL | null;
@@ -3508,12 +3507,12 @@ declare class Application extends Object$1 {
3508
3507
  when `format` is set to `'expand'`.
3509
3508
  * @returns The JSON-LD representation of this object.
3510
3509
  */
3511
- toJsonLd(options?: {
3510
+ override toJsonLd(options?: {
3512
3511
  format?: "compact" | "expand";
3513
3512
  contextLoader?: DocumentLoader$1;
3514
3513
  context?: string | Record<string, string> | (string | Record<string, string>)[];
3515
3514
  }): Promise<unknown>;
3516
- protected isCompactable(): boolean;
3515
+ protected override isCompactable(): boolean;
3517
3516
  /**
3518
3517
  * Converts a JSON-LD structure to an object of this type.
3519
3518
  * @param json The JSON-LD structure to convert.
@@ -3525,7 +3524,7 @@ declare class Application extends Object$1 {
3525
3524
  * @returns The object of this type.
3526
3525
  * @throws {TypeError} If the given `json` is invalid.
3527
3526
  */
3528
- static fromJsonLd(json: unknown, options?: {
3527
+ static override fromJsonLd(json: unknown, options?: {
3529
3528
  documentLoader?: DocumentLoader$1;
3530
3529
  contextLoader?: DocumentLoader$1;
3531
3530
  tracerProvider?: TracerProvider;
@@ -3537,7 +3536,7 @@ declare class Application extends Object$1 {
3537
3536
  tracerProvider?: TracerProvider;
3538
3537
  baseUrl?: URL;
3539
3538
  }): Promise<Application>;
3540
- protected _getCustomInspectProxy(): Record<string, unknown>;
3539
+ protected override _getCustomInspectProxy(): Record<string, unknown>;
3541
3540
  }
3542
3541
  /** Instances of `IntransitiveActivity` are a subtype of {@link Activity}
3543
3542
  * representing intransitive actions. The `object` property is therefore
@@ -3547,7 +3546,7 @@ declare class IntransitiveActivity extends Activity {
3547
3546
  /**
3548
3547
  * The type URI of {@link IntransitiveActivity}: `https://www.w3.org/ns/activitystreams#IntransitiveActivity`.
3549
3548
  */
3550
- static get typeId(): URL;
3549
+ static override get typeId(): URL;
3551
3550
  /**
3552
3551
  * Constructs a new instance of IntransitiveActivity with the given values.
3553
3552
  * @param values The values to initialize the instance with.
@@ -3626,7 +3625,7 @@ declare class IntransitiveActivity extends Activity {
3626
3625
  * @param options The options to use for cloning.
3627
3626
  * @returns The cloned instance.
3628
3627
  */
3629
- clone(values?: {
3628
+ override clone(values?: {
3630
3629
  id?: URL | null;
3631
3630
  attachments?: (Object$1 | Link | PropertyValue | URL)[];
3632
3631
  attribution?: Application | Group | Organization | Person | Service | URL | null;
@@ -3702,12 +3701,12 @@ declare class IntransitiveActivity extends Activity {
3702
3701
  when `format` is set to `'expand'`.
3703
3702
  * @returns The JSON-LD representation of this object.
3704
3703
  */
3705
- toJsonLd(options?: {
3704
+ override toJsonLd(options?: {
3706
3705
  format?: "compact" | "expand";
3707
3706
  contextLoader?: DocumentLoader$1;
3708
3707
  context?: string | Record<string, string> | (string | Record<string, string>)[];
3709
3708
  }): Promise<unknown>;
3710
- protected isCompactable(): boolean;
3709
+ protected override isCompactable(): boolean;
3711
3710
  /**
3712
3711
  * Converts a JSON-LD structure to an object of this type.
3713
3712
  * @param json The JSON-LD structure to convert.
@@ -3719,7 +3718,7 @@ declare class IntransitiveActivity extends Activity {
3719
3718
  * @returns The object of this type.
3720
3719
  * @throws {TypeError} If the given `json` is invalid.
3721
3720
  */
3722
- static fromJsonLd(json: unknown, options?: {
3721
+ static override fromJsonLd(json: unknown, options?: {
3723
3722
  documentLoader?: DocumentLoader$1;
3724
3723
  contextLoader?: DocumentLoader$1;
3725
3724
  tracerProvider?: TracerProvider;
@@ -3731,7 +3730,7 @@ declare class IntransitiveActivity extends Activity {
3731
3730
  tracerProvider?: TracerProvider;
3732
3731
  baseUrl?: URL;
3733
3732
  }): Promise<IntransitiveActivity>;
3734
- protected _getCustomInspectProxy(): Record<string, unknown>;
3733
+ protected override _getCustomInspectProxy(): Record<string, unknown>;
3735
3734
  }
3736
3735
  /** An `IntransitiveActivity` that indicates that the `actor` has arrived at the `location`.
3737
3736
  * The `origin` can be used to identify the context from which the `actor` originated.
@@ -3741,7 +3740,7 @@ declare class Arrive extends IntransitiveActivity {
3741
3740
  /**
3742
3741
  * The type URI of {@link Arrive}: `https://www.w3.org/ns/activitystreams#Arrive`.
3743
3742
  */
3744
- static get typeId(): URL;
3743
+ static override get typeId(): URL;
3745
3744
  /**
3746
3745
  * Constructs a new instance of Arrive with the given values.
3747
3746
  * @param values The values to initialize the instance with.
@@ -3820,7 +3819,7 @@ declare class Arrive extends IntransitiveActivity {
3820
3819
  * @param options The options to use for cloning.
3821
3820
  * @returns The cloned instance.
3822
3821
  */
3823
- clone(values?: {
3822
+ override clone(values?: {
3824
3823
  id?: URL | null;
3825
3824
  attachments?: (Object$1 | Link | PropertyValue | URL)[];
3826
3825
  attribution?: Application | Group | Organization | Person | Service | URL | null;
@@ -3896,12 +3895,12 @@ declare class Arrive extends IntransitiveActivity {
3896
3895
  when `format` is set to `'expand'`.
3897
3896
  * @returns The JSON-LD representation of this object.
3898
3897
  */
3899
- toJsonLd(options?: {
3898
+ override toJsonLd(options?: {
3900
3899
  format?: "compact" | "expand";
3901
3900
  contextLoader?: DocumentLoader$1;
3902
3901
  context?: string | Record<string, string> | (string | Record<string, string>)[];
3903
3902
  }): Promise<unknown>;
3904
- protected isCompactable(): boolean;
3903
+ protected override isCompactable(): boolean;
3905
3904
  /**
3906
3905
  * Converts a JSON-LD structure to an object of this type.
3907
3906
  * @param json The JSON-LD structure to convert.
@@ -3913,7 +3912,7 @@ declare class Arrive extends IntransitiveActivity {
3913
3912
  * @returns The object of this type.
3914
3913
  * @throws {TypeError} If the given `json` is invalid.
3915
3914
  */
3916
- static fromJsonLd(json: unknown, options?: {
3915
+ static override fromJsonLd(json: unknown, options?: {
3917
3916
  documentLoader?: DocumentLoader$1;
3918
3917
  contextLoader?: DocumentLoader$1;
3919
3918
  tracerProvider?: TracerProvider;
@@ -3925,7 +3924,7 @@ declare class Arrive extends IntransitiveActivity {
3925
3924
  tracerProvider?: TracerProvider;
3926
3925
  baseUrl?: URL;
3927
3926
  }): Promise<Arrive>;
3928
- protected _getCustomInspectProxy(): Record<string, unknown>;
3927
+ protected override _getCustomInspectProxy(): Record<string, unknown>;
3929
3928
  }
3930
3929
  /** Represents any kind of multi-paragraph written work.
3931
3930
  */
@@ -3934,7 +3933,7 @@ declare class Article extends Object$1 {
3934
3933
  /**
3935
3934
  * The type URI of {@link Article}: `https://www.w3.org/ns/activitystreams#Article`.
3936
3935
  */
3937
- static get typeId(): URL;
3936
+ static override get typeId(): URL;
3938
3937
  /**
3939
3938
  * Constructs a new instance of Article with the given values.
3940
3939
  * @param values The values to initialize the instance with.
@@ -4002,7 +4001,7 @@ declare class Article extends Object$1 {
4002
4001
  * @param options The options to use for cloning.
4003
4002
  * @returns The cloned instance.
4004
4003
  */
4005
- clone(values?: {
4004
+ override clone(values?: {
4006
4005
  id?: URL | null;
4007
4006
  attachments?: (Object$1 | Link | PropertyValue | URL)[];
4008
4007
  attribution?: Application | Group | Organization | Person | Service | URL | null;
@@ -4079,12 +4078,12 @@ declare class Article extends Object$1 {
4079
4078
  when `format` is set to `'expand'`.
4080
4079
  * @returns The JSON-LD representation of this object.
4081
4080
  */
4082
- toJsonLd(options?: {
4081
+ override toJsonLd(options?: {
4083
4082
  format?: "compact" | "expand";
4084
4083
  contextLoader?: DocumentLoader$1;
4085
4084
  context?: string | Record<string, string> | (string | Record<string, string>)[];
4086
4085
  }): Promise<unknown>;
4087
- protected isCompactable(): boolean;
4086
+ protected override isCompactable(): boolean;
4088
4087
  /**
4089
4088
  * Converts a JSON-LD structure to an object of this type.
4090
4089
  * @param json The JSON-LD structure to convert.
@@ -4096,7 +4095,7 @@ declare class Article extends Object$1 {
4096
4095
  * @returns The object of this type.
4097
4096
  * @throws {TypeError} If the given `json` is invalid.
4098
4097
  */
4099
- static fromJsonLd(json: unknown, options?: {
4098
+ static override fromJsonLd(json: unknown, options?: {
4100
4099
  documentLoader?: DocumentLoader$1;
4101
4100
  contextLoader?: DocumentLoader$1;
4102
4101
  tracerProvider?: TracerProvider;
@@ -4108,7 +4107,7 @@ declare class Article extends Object$1 {
4108
4107
  tracerProvider?: TracerProvider;
4109
4108
  baseUrl?: URL;
4110
4109
  }): Promise<Article>;
4111
- protected _getCustomInspectProxy(): Record<string, unknown>;
4110
+ protected override _getCustomInspectProxy(): Record<string, unknown>;
4112
4111
  }
4113
4112
  /** Represents a document of any kind.
4114
4113
  */
@@ -4117,7 +4116,7 @@ declare class Document extends Object$1 {
4117
4116
  /**
4118
4117
  * The type URI of {@link Document}: `https://www.w3.org/ns/activitystreams#Document`.
4119
4118
  */
4120
- static get typeId(): URL;
4119
+ static override get typeId(): URL;
4121
4120
  /**
4122
4121
  * Constructs a new instance of Document with the given values.
4123
4122
  * @param values The values to initialize the instance with.
@@ -4186,7 +4185,7 @@ declare class Document extends Object$1 {
4186
4185
  * @param options The options to use for cloning.
4187
4186
  * @returns The cloned instance.
4188
4187
  */
4189
- clone(values?: {
4188
+ override clone(values?: {
4190
4189
  id?: URL | null;
4191
4190
  attachments?: (Object$1 | Link | PropertyValue | URL)[];
4192
4191
  attribution?: Application | Group | Organization | Person | Service | URL | null;
@@ -4260,12 +4259,12 @@ declare class Document extends Object$1 {
4260
4259
  when `format` is set to `'expand'`.
4261
4260
  * @returns The JSON-LD representation of this object.
4262
4261
  */
4263
- toJsonLd(options?: {
4262
+ override toJsonLd(options?: {
4264
4263
  format?: "compact" | "expand";
4265
4264
  contextLoader?: DocumentLoader$1;
4266
4265
  context?: string | Record<string, string> | (string | Record<string, string>)[];
4267
4266
  }): Promise<unknown>;
4268
- protected isCompactable(): boolean;
4267
+ protected override isCompactable(): boolean;
4269
4268
  /**
4270
4269
  * Converts a JSON-LD structure to an object of this type.
4271
4270
  * @param json The JSON-LD structure to convert.
@@ -4277,7 +4276,7 @@ declare class Document extends Object$1 {
4277
4276
  * @returns The object of this type.
4278
4277
  * @throws {TypeError} If the given `json` is invalid.
4279
4278
  */
4280
- static fromJsonLd(json: unknown, options?: {
4279
+ static override fromJsonLd(json: unknown, options?: {
4281
4280
  documentLoader?: DocumentLoader$1;
4282
4281
  contextLoader?: DocumentLoader$1;
4283
4282
  tracerProvider?: TracerProvider;
@@ -4289,7 +4288,7 @@ declare class Document extends Object$1 {
4289
4288
  tracerProvider?: TracerProvider;
4290
4289
  baseUrl?: URL;
4291
4290
  }): Promise<Document>;
4292
- protected _getCustomInspectProxy(): Record<string, unknown>;
4291
+ protected override _getCustomInspectProxy(): Record<string, unknown>;
4293
4292
  }
4294
4293
  /** Represents an audio document of any kind.
4295
4294
  */
@@ -4297,7 +4296,7 @@ declare class Audio extends Document {
4297
4296
  /**
4298
4297
  * The type URI of {@link Audio}: `https://www.w3.org/ns/activitystreams#Audio`.
4299
4298
  */
4300
- static get typeId(): URL;
4299
+ static override get typeId(): URL;
4301
4300
  /**
4302
4301
  * Constructs a new instance of Audio with the given values.
4303
4302
  * @param values The values to initialize the instance with.
@@ -4366,7 +4365,7 @@ declare class Audio extends Document {
4366
4365
  * @param options The options to use for cloning.
4367
4366
  * @returns The cloned instance.
4368
4367
  */
4369
- clone(values?: {
4368
+ override clone(values?: {
4370
4369
  id?: URL | null;
4371
4370
  attachments?: (Object$1 | Link | PropertyValue | URL)[];
4372
4371
  attribution?: Application | Group | Organization | Person | Service | URL | null;
@@ -4432,12 +4431,12 @@ declare class Audio extends Document {
4432
4431
  when `format` is set to `'expand'`.
4433
4432
  * @returns The JSON-LD representation of this object.
4434
4433
  */
4435
- toJsonLd(options?: {
4434
+ override toJsonLd(options?: {
4436
4435
  format?: "compact" | "expand";
4437
4436
  contextLoader?: DocumentLoader$1;
4438
4437
  context?: string | Record<string, string> | (string | Record<string, string>)[];
4439
4438
  }): Promise<unknown>;
4440
- protected isCompactable(): boolean;
4439
+ protected override isCompactable(): boolean;
4441
4440
  /**
4442
4441
  * Converts a JSON-LD structure to an object of this type.
4443
4442
  * @param json The JSON-LD structure to convert.
@@ -4449,7 +4448,7 @@ declare class Audio extends Document {
4449
4448
  * @returns The object of this type.
4450
4449
  * @throws {TypeError} If the given `json` is invalid.
4451
4450
  */
4452
- static fromJsonLd(json: unknown, options?: {
4451
+ static override fromJsonLd(json: unknown, options?: {
4453
4452
  documentLoader?: DocumentLoader$1;
4454
4453
  contextLoader?: DocumentLoader$1;
4455
4454
  tracerProvider?: TracerProvider;
@@ -4461,7 +4460,7 @@ declare class Audio extends Document {
4461
4460
  tracerProvider?: TracerProvider;
4462
4461
  baseUrl?: URL;
4463
4462
  }): Promise<Audio>;
4464
- protected _getCustomInspectProxy(): Record<string, unknown>;
4463
+ protected override _getCustomInspectProxy(): Record<string, unknown>;
4465
4464
  }
4466
4465
  /** Indicates that the `actor` is ignoring the `object`. The `target` and
4467
4466
  * `origin` typically have no defined meaning.
@@ -4470,7 +4469,7 @@ declare class Ignore extends Activity {
4470
4469
  /**
4471
4470
  * The type URI of {@link Ignore}: `https://www.w3.org/ns/activitystreams#Ignore`.
4472
4471
  */
4473
- static get typeId(): URL;
4472
+ static override get typeId(): URL;
4474
4473
  /**
4475
4474
  * Constructs a new instance of Ignore with the given values.
4476
4475
  * @param values The values to initialize the instance with.
@@ -4549,7 +4548,7 @@ declare class Ignore extends Activity {
4549
4548
  * @param options The options to use for cloning.
4550
4549
  * @returns The cloned instance.
4551
4550
  */
4552
- clone(values?: {
4551
+ override clone(values?: {
4553
4552
  id?: URL | null;
4554
4553
  attachments?: (Object$1 | Link | PropertyValue | URL)[];
4555
4554
  attribution?: Application | Group | Organization | Person | Service | URL | null;
@@ -4625,12 +4624,12 @@ declare class Ignore extends Activity {
4625
4624
  when `format` is set to `'expand'`.
4626
4625
  * @returns The JSON-LD representation of this object.
4627
4626
  */
4628
- toJsonLd(options?: {
4627
+ override toJsonLd(options?: {
4629
4628
  format?: "compact" | "expand";
4630
4629
  contextLoader?: DocumentLoader$1;
4631
4630
  context?: string | Record<string, string> | (string | Record<string, string>)[];
4632
4631
  }): Promise<unknown>;
4633
- protected isCompactable(): boolean;
4632
+ protected override isCompactable(): boolean;
4634
4633
  /**
4635
4634
  * Converts a JSON-LD structure to an object of this type.
4636
4635
  * @param json The JSON-LD structure to convert.
@@ -4642,7 +4641,7 @@ declare class Ignore extends Activity {
4642
4641
  * @returns The object of this type.
4643
4642
  * @throws {TypeError} If the given `json` is invalid.
4644
4643
  */
4645
- static fromJsonLd(json: unknown, options?: {
4644
+ static override fromJsonLd(json: unknown, options?: {
4646
4645
  documentLoader?: DocumentLoader$1;
4647
4646
  contextLoader?: DocumentLoader$1;
4648
4647
  tracerProvider?: TracerProvider;
@@ -4654,7 +4653,7 @@ declare class Ignore extends Activity {
4654
4653
  tracerProvider?: TracerProvider;
4655
4654
  baseUrl?: URL;
4656
4655
  }): Promise<Ignore>;
4657
- protected _getCustomInspectProxy(): Record<string, unknown>;
4656
+ protected override _getCustomInspectProxy(): Record<string, unknown>;
4658
4657
  }
4659
4658
  /** Indicates that the `actor` is blocking the `object`. Blocking is a stronger
4660
4659
  * form of {@link Ignore}. The typical use is to support social systems that
@@ -4665,7 +4664,7 @@ declare class Block extends Ignore {
4665
4664
  /**
4666
4665
  * The type URI of {@link Block}: `https://www.w3.org/ns/activitystreams#Block`.
4667
4666
  */
4668
- static get typeId(): URL;
4667
+ static override get typeId(): URL;
4669
4668
  /**
4670
4669
  * Constructs a new instance of Block with the given values.
4671
4670
  * @param values The values to initialize the instance with.
@@ -4744,7 +4743,7 @@ declare class Block extends Ignore {
4744
4743
  * @param options The options to use for cloning.
4745
4744
  * @returns The cloned instance.
4746
4745
  */
4747
- clone(values?: {
4746
+ override clone(values?: {
4748
4747
  id?: URL | null;
4749
4748
  attachments?: (Object$1 | Link | PropertyValue | URL)[];
4750
4749
  attribution?: Application | Group | Organization | Person | Service | URL | null;
@@ -4820,12 +4819,12 @@ declare class Block extends Ignore {
4820
4819
  when `format` is set to `'expand'`.
4821
4820
  * @returns The JSON-LD representation of this object.
4822
4821
  */
4823
- toJsonLd(options?: {
4822
+ override toJsonLd(options?: {
4824
4823
  format?: "compact" | "expand";
4825
4824
  contextLoader?: DocumentLoader$1;
4826
4825
  context?: string | Record<string, string> | (string | Record<string, string>)[];
4827
4826
  }): Promise<unknown>;
4828
- protected isCompactable(): boolean;
4827
+ protected override isCompactable(): boolean;
4829
4828
  /**
4830
4829
  * Converts a JSON-LD structure to an object of this type.
4831
4830
  * @param json The JSON-LD structure to convert.
@@ -4837,7 +4836,7 @@ declare class Block extends Ignore {
4837
4836
  * @returns The object of this type.
4838
4837
  * @throws {TypeError} If the given `json` is invalid.
4839
4838
  */
4840
- static fromJsonLd(json: unknown, options?: {
4839
+ static override fromJsonLd(json: unknown, options?: {
4841
4840
  documentLoader?: DocumentLoader$1;
4842
4841
  contextLoader?: DocumentLoader$1;
4843
4842
  tracerProvider?: TracerProvider;
@@ -4849,7 +4848,7 @@ declare class Block extends Ignore {
4849
4848
  tracerProvider?: TracerProvider;
4850
4849
  baseUrl?: URL;
4851
4850
  }): Promise<Block>;
4852
- protected _getCustomInspectProxy(): Record<string, unknown>;
4851
+ protected override _getCustomInspectProxy(): Record<string, unknown>;
4853
4852
  }
4854
4853
  /** A `Collection` is a subtype of {@link Object} that represents ordered or
4855
4854
  * unordered sets of {@link Object} or {@link Link} instances.
@@ -4862,7 +4861,7 @@ declare class Collection extends Object$1 {
4862
4861
  /**
4863
4862
  * The type URI of {@link Collection}: `https://www.w3.org/ns/activitystreams#Collection`.
4864
4863
  */
4865
- static get typeId(): URL;
4864
+ static override get typeId(): URL;
4866
4865
  /**
4867
4866
  * Constructs a new instance of Collection with the given values.
4868
4867
  * @param values The values to initialize the instance with.
@@ -4942,7 +4941,7 @@ declare class Collection extends Object$1 {
4942
4941
  * @param options The options to use for cloning.
4943
4942
  * @returns The cloned instance.
4944
4943
  */
4945
- clone(values?: {
4944
+ override clone(values?: {
4946
4945
  id?: URL | null;
4947
4946
  attachments?: (Object$1 | Link | PropertyValue | URL)[];
4948
4947
  attribution?: Application | Group | Organization | Person | Service | URL | null;
@@ -5208,12 +5207,12 @@ declare class Collection extends Object$1 {
5208
5207
  when `format` is set to `'expand'`.
5209
5208
  * @returns The JSON-LD representation of this object.
5210
5209
  */
5211
- toJsonLd(options?: {
5210
+ override toJsonLd(options?: {
5212
5211
  format?: "compact" | "expand";
5213
5212
  contextLoader?: DocumentLoader$1;
5214
5213
  context?: string | Record<string, string> | (string | Record<string, string>)[];
5215
5214
  }): Promise<unknown>;
5216
- protected isCompactable(): boolean;
5215
+ protected override isCompactable(): boolean;
5217
5216
  /**
5218
5217
  * Converts a JSON-LD structure to an object of this type.
5219
5218
  * @param json The JSON-LD structure to convert.
@@ -5225,7 +5224,7 @@ declare class Collection extends Object$1 {
5225
5224
  * @returns The object of this type.
5226
5225
  * @throws {TypeError} If the given `json` is invalid.
5227
5226
  */
5228
- static fromJsonLd(json: unknown, options?: {
5227
+ static override fromJsonLd(json: unknown, options?: {
5229
5228
  documentLoader?: DocumentLoader$1;
5230
5229
  contextLoader?: DocumentLoader$1;
5231
5230
  tracerProvider?: TracerProvider;
@@ -5237,7 +5236,7 @@ declare class Collection extends Object$1 {
5237
5236
  tracerProvider?: TracerProvider;
5238
5237
  baseUrl?: URL;
5239
5238
  }): Promise<Collection>;
5240
- protected _getCustomInspectProxy(): Record<string, unknown>;
5239
+ protected override _getCustomInspectProxy(): Record<string, unknown>;
5241
5240
  }
5242
5241
  /** Used to represent distinct subsets of items from a `Collection`.
5243
5242
  * Refer to the Activity Streams 2.0 Core for a complete description of
@@ -5248,7 +5247,7 @@ declare class CollectionPage extends Collection {
5248
5247
  /**
5249
5248
  * The type URI of {@link CollectionPage}: `https://www.w3.org/ns/activitystreams#CollectionPage`.
5250
5249
  */
5251
- static get typeId(): URL;
5250
+ static override get typeId(): URL;
5252
5251
  /**
5253
5252
  * Constructs a new instance of CollectionPage with the given values.
5254
5253
  * @param values The values to initialize the instance with.
@@ -5331,7 +5330,7 @@ declare class CollectionPage extends Collection {
5331
5330
  * @param options The options to use for cloning.
5332
5331
  * @returns The cloned instance.
5333
5332
  */
5334
- clone(values?: {
5333
+ override clone(values?: {
5335
5334
  id?: URL | null;
5336
5335
  attachments?: (Object$1 | Link | PropertyValue | URL)[];
5337
5336
  attribution?: Application | Group | Organization | Person | Service | URL | null;
@@ -5457,12 +5456,12 @@ declare class CollectionPage extends Collection {
5457
5456
  when `format` is set to `'expand'`.
5458
5457
  * @returns The JSON-LD representation of this object.
5459
5458
  */
5460
- toJsonLd(options?: {
5459
+ override toJsonLd(options?: {
5461
5460
  format?: "compact" | "expand";
5462
5461
  contextLoader?: DocumentLoader$1;
5463
5462
  context?: string | Record<string, string> | (string | Record<string, string>)[];
5464
5463
  }): Promise<unknown>;
5465
- protected isCompactable(): boolean;
5464
+ protected override isCompactable(): boolean;
5466
5465
  /**
5467
5466
  * Converts a JSON-LD structure to an object of this type.
5468
5467
  * @param json The JSON-LD structure to convert.
@@ -5474,7 +5473,7 @@ declare class CollectionPage extends Collection {
5474
5473
  * @returns The object of this type.
5475
5474
  * @throws {TypeError} If the given `json` is invalid.
5476
5475
  */
5477
- static fromJsonLd(json: unknown, options?: {
5476
+ static override fromJsonLd(json: unknown, options?: {
5478
5477
  documentLoader?: DocumentLoader$1;
5479
5478
  contextLoader?: DocumentLoader$1;
5480
5479
  tracerProvider?: TracerProvider;
@@ -5486,7 +5485,7 @@ declare class CollectionPage extends Collection {
5486
5485
  tracerProvider?: TracerProvider;
5487
5486
  baseUrl?: URL;
5488
5487
  }): Promise<CollectionPage>;
5489
- protected _getCustomInspectProxy(): Record<string, unknown>;
5488
+ protected override _getCustomInspectProxy(): Record<string, unknown>;
5490
5489
  }
5491
5490
  /** Indicates that the `actor` has created the `object`.
5492
5491
  */
@@ -5494,7 +5493,7 @@ declare class Create extends Activity {
5494
5493
  /**
5495
5494
  * The type URI of {@link Create}: `https://www.w3.org/ns/activitystreams#Create`.
5496
5495
  */
5497
- static get typeId(): URL;
5496
+ static override get typeId(): URL;
5498
5497
  /**
5499
5498
  * Constructs a new instance of Create with the given values.
5500
5499
  * @param values The values to initialize the instance with.
@@ -5573,7 +5572,7 @@ declare class Create extends Activity {
5573
5572
  * @param options The options to use for cloning.
5574
5573
  * @returns The cloned instance.
5575
5574
  */
5576
- clone(values?: {
5575
+ override clone(values?: {
5577
5576
  id?: URL | null;
5578
5577
  attachments?: (Object$1 | Link | PropertyValue | URL)[];
5579
5578
  attribution?: Application | Group | Organization | Person | Service | URL | null;
@@ -5649,12 +5648,12 @@ declare class Create extends Activity {
5649
5648
  when `format` is set to `'expand'`.
5650
5649
  * @returns The JSON-LD representation of this object.
5651
5650
  */
5652
- toJsonLd(options?: {
5651
+ override toJsonLd(options?: {
5653
5652
  format?: "compact" | "expand";
5654
5653
  contextLoader?: DocumentLoader$1;
5655
5654
  context?: string | Record<string, string> | (string | Record<string, string>)[];
5656
5655
  }): Promise<unknown>;
5657
- protected isCompactable(): boolean;
5656
+ protected override isCompactable(): boolean;
5658
5657
  /**
5659
5658
  * Converts a JSON-LD structure to an object of this type.
5660
5659
  * @param json The JSON-LD structure to convert.
@@ -5666,7 +5665,7 @@ declare class Create extends Activity {
5666
5665
  * @returns The object of this type.
5667
5666
  * @throws {TypeError} If the given `json` is invalid.
5668
5667
  */
5669
- static fromJsonLd(json: unknown, options?: {
5668
+ static override fromJsonLd(json: unknown, options?: {
5670
5669
  documentLoader?: DocumentLoader$1;
5671
5670
  contextLoader?: DocumentLoader$1;
5672
5671
  tracerProvider?: TracerProvider;
@@ -5678,7 +5677,7 @@ declare class Create extends Activity {
5678
5677
  tracerProvider?: TracerProvider;
5679
5678
  baseUrl?: URL;
5680
5679
  }): Promise<Create>;
5681
- protected _getCustomInspectProxy(): Record<string, unknown>;
5680
+ protected override _getCustomInspectProxy(): Record<string, unknown>;
5682
5681
  }
5683
5682
  /** Indicates that the `actor` has deleted the `object`. If specified,
5684
5683
  * the `origin` indicates the context from which the `object` was deleted.
@@ -5687,7 +5686,7 @@ declare class Delete extends Activity {
5687
5686
  /**
5688
5687
  * The type URI of {@link Delete}: `https://www.w3.org/ns/activitystreams#Delete`.
5689
5688
  */
5690
- static get typeId(): URL;
5689
+ static override get typeId(): URL;
5691
5690
  /**
5692
5691
  * Constructs a new instance of Delete with the given values.
5693
5692
  * @param values The values to initialize the instance with.
@@ -5766,7 +5765,7 @@ declare class Delete extends Activity {
5766
5765
  * @param options The options to use for cloning.
5767
5766
  * @returns The cloned instance.
5768
5767
  */
5769
- clone(values?: {
5768
+ override clone(values?: {
5770
5769
  id?: URL | null;
5771
5770
  attachments?: (Object$1 | Link | PropertyValue | URL)[];
5772
5771
  attribution?: Application | Group | Organization | Person | Service | URL | null;
@@ -5842,12 +5841,12 @@ declare class Delete extends Activity {
5842
5841
  when `format` is set to `'expand'`.
5843
5842
  * @returns The JSON-LD representation of this object.
5844
5843
  */
5845
- toJsonLd(options?: {
5844
+ override toJsonLd(options?: {
5846
5845
  format?: "compact" | "expand";
5847
5846
  contextLoader?: DocumentLoader$1;
5848
5847
  context?: string | Record<string, string> | (string | Record<string, string>)[];
5849
5848
  }): Promise<unknown>;
5850
- protected isCompactable(): boolean;
5849
+ protected override isCompactable(): boolean;
5851
5850
  /**
5852
5851
  * Converts a JSON-LD structure to an object of this type.
5853
5852
  * @param json The JSON-LD structure to convert.
@@ -5859,7 +5858,7 @@ declare class Delete extends Activity {
5859
5858
  * @returns The object of this type.
5860
5859
  * @throws {TypeError} If the given `json` is invalid.
5861
5860
  */
5862
- static fromJsonLd(json: unknown, options?: {
5861
+ static override fromJsonLd(json: unknown, options?: {
5863
5862
  documentLoader?: DocumentLoader$1;
5864
5863
  contextLoader?: DocumentLoader$1;
5865
5864
  tracerProvider?: TracerProvider;
@@ -5871,7 +5870,7 @@ declare class Delete extends Activity {
5871
5870
  tracerProvider?: TracerProvider;
5872
5871
  baseUrl?: URL;
5873
5872
  }): Promise<Delete>;
5874
- protected _getCustomInspectProxy(): Record<string, unknown>;
5873
+ protected override _getCustomInspectProxy(): Record<string, unknown>;
5875
5874
  }
5876
5875
  /** Indicates that the `actor` dislikes the `object`.
5877
5876
  */
@@ -5879,7 +5878,7 @@ declare class Dislike extends Activity {
5879
5878
  /**
5880
5879
  * The type URI of {@link Dislike}: `https://www.w3.org/ns/activitystreams#Dislike`.
5881
5880
  */
5882
- static get typeId(): URL;
5881
+ static override get typeId(): URL;
5883
5882
  /**
5884
5883
  * Constructs a new instance of Dislike with the given values.
5885
5884
  * @param values The values to initialize the instance with.
@@ -5958,7 +5957,7 @@ declare class Dislike extends Activity {
5958
5957
  * @param options The options to use for cloning.
5959
5958
  * @returns The cloned instance.
5960
5959
  */
5961
- clone(values?: {
5960
+ override clone(values?: {
5962
5961
  id?: URL | null;
5963
5962
  attachments?: (Object$1 | Link | PropertyValue | URL)[];
5964
5963
  attribution?: Application | Group | Organization | Person | Service | URL | null;
@@ -6034,12 +6033,12 @@ declare class Dislike extends Activity {
6034
6033
  when `format` is set to `'expand'`.
6035
6034
  * @returns The JSON-LD representation of this object.
6036
6035
  */
6037
- toJsonLd(options?: {
6036
+ override toJsonLd(options?: {
6038
6037
  format?: "compact" | "expand";
6039
6038
  contextLoader?: DocumentLoader$1;
6040
6039
  context?: string | Record<string, string> | (string | Record<string, string>)[];
6041
6040
  }): Promise<unknown>;
6042
- protected isCompactable(): boolean;
6041
+ protected override isCompactable(): boolean;
6043
6042
  /**
6044
6043
  * Converts a JSON-LD structure to an object of this type.
6045
6044
  * @param json The JSON-LD structure to convert.
@@ -6051,7 +6050,7 @@ declare class Dislike extends Activity {
6051
6050
  * @returns The object of this type.
6052
6051
  * @throws {TypeError} If the given `json` is invalid.
6053
6052
  */
6054
- static fromJsonLd(json: unknown, options?: {
6053
+ static override fromJsonLd(json: unknown, options?: {
6055
6054
  documentLoader?: DocumentLoader$1;
6056
6055
  contextLoader?: DocumentLoader$1;
6057
6056
  tracerProvider?: TracerProvider;
@@ -6063,7 +6062,7 @@ declare class Dislike extends Activity {
6063
6062
  tracerProvider?: TracerProvider;
6064
6063
  baseUrl?: URL;
6065
6064
  }): Promise<Dislike>;
6066
- protected _getCustomInspectProxy(): Record<string, unknown>;
6065
+ protected override _getCustomInspectProxy(): Record<string, unknown>;
6067
6066
  }
6068
6067
  /** Contents of {@link Actor}'s `endpoints`.
6069
6068
  */
@@ -6208,7 +6207,7 @@ declare class Event extends Object$1 {
6208
6207
  /**
6209
6208
  * The type URI of {@link Event}: `https://www.w3.org/ns/activitystreams#Event`.
6210
6209
  */
6211
- static get typeId(): URL;
6210
+ static override get typeId(): URL;
6212
6211
  /**
6213
6212
  * Constructs a new instance of Event with the given values.
6214
6213
  * @param values The values to initialize the instance with.
@@ -6275,7 +6274,7 @@ declare class Event extends Object$1 {
6275
6274
  * @param options The options to use for cloning.
6276
6275
  * @returns The cloned instance.
6277
6276
  */
6278
- clone(values?: {
6277
+ override clone(values?: {
6279
6278
  id?: URL | null;
6280
6279
  attachments?: (Object$1 | Link | PropertyValue | URL)[];
6281
6280
  attribution?: Application | Group | Organization | Person | Service | URL | null;
@@ -6339,12 +6338,12 @@ declare class Event extends Object$1 {
6339
6338
  when `format` is set to `'expand'`.
6340
6339
  * @returns The JSON-LD representation of this object.
6341
6340
  */
6342
- toJsonLd(options?: {
6341
+ override toJsonLd(options?: {
6343
6342
  format?: "compact" | "expand";
6344
6343
  contextLoader?: DocumentLoader$1;
6345
6344
  context?: string | Record<string, string> | (string | Record<string, string>)[];
6346
6345
  }): Promise<unknown>;
6347
- protected isCompactable(): boolean;
6346
+ protected override isCompactable(): boolean;
6348
6347
  /**
6349
6348
  * Converts a JSON-LD structure to an object of this type.
6350
6349
  * @param json The JSON-LD structure to convert.
@@ -6356,7 +6355,7 @@ declare class Event extends Object$1 {
6356
6355
  * @returns The object of this type.
6357
6356
  * @throws {TypeError} If the given `json` is invalid.
6358
6357
  */
6359
- static fromJsonLd(json: unknown, options?: {
6358
+ static override fromJsonLd(json: unknown, options?: {
6360
6359
  documentLoader?: DocumentLoader$1;
6361
6360
  contextLoader?: DocumentLoader$1;
6362
6361
  tracerProvider?: TracerProvider;
@@ -6368,7 +6367,7 @@ declare class Event extends Object$1 {
6368
6367
  tracerProvider?: TracerProvider;
6369
6368
  baseUrl?: URL;
6370
6369
  }): Promise<Event>;
6371
- protected _getCustomInspectProxy(): Record<string, unknown>;
6370
+ protected override _getCustomInspectProxy(): Record<string, unknown>;
6372
6371
  }
6373
6372
  /** Indicates that the `actor` is "flagging" the `object`. Flagging is defined
6374
6373
  * in the sense common to many social platforms as reporting content as being
@@ -6378,7 +6377,7 @@ declare class Flag extends Activity {
6378
6377
  /**
6379
6378
  * The type URI of {@link Flag}: `https://www.w3.org/ns/activitystreams#Flag`.
6380
6379
  */
6381
- static get typeId(): URL;
6380
+ static override get typeId(): URL;
6382
6381
  /**
6383
6382
  * Constructs a new instance of Flag with the given values.
6384
6383
  * @param values The values to initialize the instance with.
@@ -6457,7 +6456,7 @@ declare class Flag extends Activity {
6457
6456
  * @param options The options to use for cloning.
6458
6457
  * @returns The cloned instance.
6459
6458
  */
6460
- clone(values?: {
6459
+ override clone(values?: {
6461
6460
  id?: URL | null;
6462
6461
  attachments?: (Object$1 | Link | PropertyValue | URL)[];
6463
6462
  attribution?: Application | Group | Organization | Person | Service | URL | null;
@@ -6533,12 +6532,12 @@ declare class Flag extends Activity {
6533
6532
  when `format` is set to `'expand'`.
6534
6533
  * @returns The JSON-LD representation of this object.
6535
6534
  */
6536
- toJsonLd(options?: {
6535
+ override toJsonLd(options?: {
6537
6536
  format?: "compact" | "expand";
6538
6537
  contextLoader?: DocumentLoader$1;
6539
6538
  context?: string | Record<string, string> | (string | Record<string, string>)[];
6540
6539
  }): Promise<unknown>;
6541
- protected isCompactable(): boolean;
6540
+ protected override isCompactable(): boolean;
6542
6541
  /**
6543
6542
  * Converts a JSON-LD structure to an object of this type.
6544
6543
  * @param json The JSON-LD structure to convert.
@@ -6550,7 +6549,7 @@ declare class Flag extends Activity {
6550
6549
  * @returns The object of this type.
6551
6550
  * @throws {TypeError} If the given `json` is invalid.
6552
6551
  */
6553
- static fromJsonLd(json: unknown, options?: {
6552
+ static override fromJsonLd(json: unknown, options?: {
6554
6553
  documentLoader?: DocumentLoader$1;
6555
6554
  contextLoader?: DocumentLoader$1;
6556
6555
  tracerProvider?: TracerProvider;
@@ -6562,7 +6561,7 @@ declare class Flag extends Activity {
6562
6561
  tracerProvider?: TracerProvider;
6563
6562
  baseUrl?: URL;
6564
6563
  }): Promise<Flag>;
6565
- protected _getCustomInspectProxy(): Record<string, unknown>;
6564
+ protected override _getCustomInspectProxy(): Record<string, unknown>;
6566
6565
  }
6567
6566
  /** Indicates that the `actor` is "following" the `object`. Following is defined
6568
6567
  * in the sense typically used within Social systems in which the actor is
@@ -6573,7 +6572,7 @@ declare class Follow extends Activity {
6573
6572
  /**
6574
6573
  * The type URI of {@link Follow}: `https://www.w3.org/ns/activitystreams#Follow`.
6575
6574
  */
6576
- static get typeId(): URL;
6575
+ static override get typeId(): URL;
6577
6576
  /**
6578
6577
  * Constructs a new instance of Follow with the given values.
6579
6578
  * @param values The values to initialize the instance with.
@@ -6652,7 +6651,7 @@ declare class Follow extends Activity {
6652
6651
  * @param options The options to use for cloning.
6653
6652
  * @returns The cloned instance.
6654
6653
  */
6655
- clone(values?: {
6654
+ override clone(values?: {
6656
6655
  id?: URL | null;
6657
6656
  attachments?: (Object$1 | Link | PropertyValue | URL)[];
6658
6657
  attribution?: Application | Group | Organization | Person | Service | URL | null;
@@ -6728,12 +6727,12 @@ declare class Follow extends Activity {
6728
6727
  when `format` is set to `'expand'`.
6729
6728
  * @returns The JSON-LD representation of this object.
6730
6729
  */
6731
- toJsonLd(options?: {
6730
+ override toJsonLd(options?: {
6732
6731
  format?: "compact" | "expand";
6733
6732
  contextLoader?: DocumentLoader$1;
6734
6733
  context?: string | Record<string, string> | (string | Record<string, string>)[];
6735
6734
  }): Promise<unknown>;
6736
- protected isCompactable(): boolean;
6735
+ protected override isCompactable(): boolean;
6737
6736
  /**
6738
6737
  * Converts a JSON-LD structure to an object of this type.
6739
6738
  * @param json The JSON-LD structure to convert.
@@ -6745,7 +6744,7 @@ declare class Follow extends Activity {
6745
6744
  * @returns The object of this type.
6746
6745
  * @throws {TypeError} If the given `json` is invalid.
6747
6746
  */
6748
- static fromJsonLd(json: unknown, options?: {
6747
+ static override fromJsonLd(json: unknown, options?: {
6749
6748
  documentLoader?: DocumentLoader$1;
6750
6749
  contextLoader?: DocumentLoader$1;
6751
6750
  tracerProvider?: TracerProvider;
@@ -6757,7 +6756,7 @@ declare class Follow extends Activity {
6757
6756
  tracerProvider?: TracerProvider;
6758
6757
  baseUrl?: URL;
6759
6758
  }): Promise<Follow>;
6760
- protected _getCustomInspectProxy(): Record<string, unknown>;
6759
+ protected override _getCustomInspectProxy(): Record<string, unknown>;
6761
6760
  }
6762
6761
  /** Represents a formal or informal collective of Actors.
6763
6762
  */
@@ -6766,7 +6765,7 @@ declare class Group extends Object$1 {
6766
6765
  /**
6767
6766
  * The type URI of {@link Group}: `https://www.w3.org/ns/activitystreams#Group`.
6768
6767
  */
6769
- static get typeId(): URL;
6768
+ static override get typeId(): URL;
6770
6769
  /**
6771
6770
  * Constructs a new instance of Group with the given values.
6772
6771
  * @param values The values to initialize the instance with.
@@ -6860,7 +6859,7 @@ declare class Group extends Object$1 {
6860
6859
  * @param options The options to use for cloning.
6861
6860
  * @returns The cloned instance.
6862
6861
  */
6863
- clone(values?: {
6862
+ override clone(values?: {
6864
6863
  id?: URL | null;
6865
6864
  attachments?: (Object$1 | Link | PropertyValue | URL)[];
6866
6865
  attribution?: Application | Group | Organization | Person | Service | URL | null;
@@ -7314,12 +7313,12 @@ declare class Group extends Object$1 {
7314
7313
  when `format` is set to `'expand'`.
7315
7314
  * @returns The JSON-LD representation of this object.
7316
7315
  */
7317
- toJsonLd(options?: {
7316
+ override toJsonLd(options?: {
7318
7317
  format?: "compact" | "expand";
7319
7318
  contextLoader?: DocumentLoader$1;
7320
7319
  context?: string | Record<string, string> | (string | Record<string, string>)[];
7321
7320
  }): Promise<unknown>;
7322
- protected isCompactable(): boolean;
7321
+ protected override isCompactable(): boolean;
7323
7322
  /**
7324
7323
  * Converts a JSON-LD structure to an object of this type.
7325
7324
  * @param json The JSON-LD structure to convert.
@@ -7331,7 +7330,7 @@ declare class Group extends Object$1 {
7331
7330
  * @returns The object of this type.
7332
7331
  * @throws {TypeError} If the given `json` is invalid.
7333
7332
  */
7334
- static fromJsonLd(json: unknown, options?: {
7333
+ static override fromJsonLd(json: unknown, options?: {
7335
7334
  documentLoader?: DocumentLoader$1;
7336
7335
  contextLoader?: DocumentLoader$1;
7337
7336
  tracerProvider?: TracerProvider;
@@ -7343,7 +7342,7 @@ declare class Group extends Object$1 {
7343
7342
  tracerProvider?: TracerProvider;
7344
7343
  baseUrl?: URL;
7345
7344
  }): Promise<Group>;
7346
- protected _getCustomInspectProxy(): Record<string, unknown>;
7345
+ protected override _getCustomInspectProxy(): Record<string, unknown>;
7347
7346
  }
7348
7347
  /** A Link is an indirect, qualified reference to a resource identified by a URL.
7349
7348
  * The fundamental model for links is established by RFC 5988. Many of the
@@ -7524,7 +7523,7 @@ declare class Hashtag extends Link {
7524
7523
  /**
7525
7524
  * The type URI of {@link Hashtag}: `https://www.w3.org/ns/activitystreams#Hashtag`.
7526
7525
  */
7527
- static get typeId(): URL;
7526
+ static override get typeId(): URL;
7528
7527
  /**
7529
7528
  * Constructs a new instance of Hashtag with the given values.
7530
7529
  * @param values The values to initialize the instance with.
@@ -7553,7 +7552,7 @@ declare class Hashtag extends Link {
7553
7552
  * @param options The options to use for cloning.
7554
7553
  * @returns The cloned instance.
7555
7554
  */
7556
- clone(values?: {
7555
+ override clone(values?: {
7557
7556
  id?: URL | null;
7558
7557
  href?: URL | null;
7559
7558
  rel?: string | null;
@@ -7579,12 +7578,12 @@ declare class Hashtag extends Link {
7579
7578
  when `format` is set to `'expand'`.
7580
7579
  * @returns The JSON-LD representation of this object.
7581
7580
  */
7582
- toJsonLd(options?: {
7581
+ override toJsonLd(options?: {
7583
7582
  format?: "compact" | "expand";
7584
7583
  contextLoader?: DocumentLoader$1;
7585
7584
  context?: string | Record<string, string> | (string | Record<string, string>)[];
7586
7585
  }): Promise<unknown>;
7587
- protected isCompactable(): boolean;
7586
+ protected override isCompactable(): boolean;
7588
7587
  /**
7589
7588
  * Converts a JSON-LD structure to an object of this type.
7590
7589
  * @param json The JSON-LD structure to convert.
@@ -7596,7 +7595,7 @@ declare class Hashtag extends Link {
7596
7595
  * @returns The object of this type.
7597
7596
  * @throws {TypeError} If the given `json` is invalid.
7598
7597
  */
7599
- static fromJsonLd(json: unknown, options?: {
7598
+ static override fromJsonLd(json: unknown, options?: {
7600
7599
  documentLoader?: DocumentLoader$1;
7601
7600
  contextLoader?: DocumentLoader$1;
7602
7601
  tracerProvider?: TracerProvider;
@@ -7608,7 +7607,7 @@ declare class Hashtag extends Link {
7608
7607
  tracerProvider?: TracerProvider;
7609
7608
  baseUrl?: URL;
7610
7609
  }): Promise<Hashtag>;
7611
- protected _getCustomInspectProxy(): Record<string, unknown>;
7610
+ protected override _getCustomInspectProxy(): Record<string, unknown>;
7612
7611
  }
7613
7612
  /** An image document of any kind.
7614
7613
  */
@@ -7616,7 +7615,7 @@ declare class Image extends Document {
7616
7615
  /**
7617
7616
  * The type URI of {@link Image}: `https://www.w3.org/ns/activitystreams#Image`.
7618
7617
  */
7619
- static get typeId(): URL;
7618
+ static override get typeId(): URL;
7620
7619
  /**
7621
7620
  * Constructs a new instance of Image with the given values.
7622
7621
  * @param values The values to initialize the instance with.
@@ -7685,7 +7684,7 @@ declare class Image extends Document {
7685
7684
  * @param options The options to use for cloning.
7686
7685
  * @returns The cloned instance.
7687
7686
  */
7688
- clone(values?: {
7687
+ override clone(values?: {
7689
7688
  id?: URL | null;
7690
7689
  attachments?: (Object$1 | Link | PropertyValue | URL)[];
7691
7690
  attribution?: Application | Group | Organization | Person | Service | URL | null;
@@ -7751,12 +7750,12 @@ declare class Image extends Document {
7751
7750
  when `format` is set to `'expand'`.
7752
7751
  * @returns The JSON-LD representation of this object.
7753
7752
  */
7754
- toJsonLd(options?: {
7753
+ override toJsonLd(options?: {
7755
7754
  format?: "compact" | "expand";
7756
7755
  contextLoader?: DocumentLoader$1;
7757
7756
  context?: string | Record<string, string> | (string | Record<string, string>)[];
7758
7757
  }): Promise<unknown>;
7759
- protected isCompactable(): boolean;
7758
+ protected override isCompactable(): boolean;
7760
7759
  /**
7761
7760
  * Converts a JSON-LD structure to an object of this type.
7762
7761
  * @param json The JSON-LD structure to convert.
@@ -7768,7 +7767,7 @@ declare class Image extends Document {
7768
7767
  * @returns The object of this type.
7769
7768
  * @throws {TypeError} If the given `json` is invalid.
7770
7769
  */
7771
- static fromJsonLd(json: unknown, options?: {
7770
+ static override fromJsonLd(json: unknown, options?: {
7772
7771
  documentLoader?: DocumentLoader$1;
7773
7772
  contextLoader?: DocumentLoader$1;
7774
7773
  tracerProvider?: TracerProvider;
@@ -7780,7 +7779,7 @@ declare class Image extends Document {
7780
7779
  tracerProvider?: TracerProvider;
7781
7780
  baseUrl?: URL;
7782
7781
  }): Promise<Image>;
7783
- protected _getCustomInspectProxy(): Record<string, unknown>;
7782
+ protected override _getCustomInspectProxy(): Record<string, unknown>;
7784
7783
  }
7785
7784
  /** Indicates that the actor is offering the object.
7786
7785
  * If specified, the target indicates the entity to which
@@ -7790,7 +7789,7 @@ declare class Offer extends Activity {
7790
7789
  /**
7791
7790
  * The type URI of {@link Offer}: `https://www.w3.org/ns/activitystreams#Offer`.
7792
7791
  */
7793
- static get typeId(): URL;
7792
+ static override get typeId(): URL;
7794
7793
  /**
7795
7794
  * Constructs a new instance of Offer with the given values.
7796
7795
  * @param values The values to initialize the instance with.
@@ -7869,7 +7868,7 @@ declare class Offer extends Activity {
7869
7868
  * @param options The options to use for cloning.
7870
7869
  * @returns The cloned instance.
7871
7870
  */
7872
- clone(values?: {
7871
+ override clone(values?: {
7873
7872
  id?: URL | null;
7874
7873
  attachments?: (Object$1 | Link | PropertyValue | URL)[];
7875
7874
  attribution?: Application | Group | Organization | Person | Service | URL | null;
@@ -7945,12 +7944,12 @@ declare class Offer extends Activity {
7945
7944
  when `format` is set to `'expand'`.
7946
7945
  * @returns The JSON-LD representation of this object.
7947
7946
  */
7948
- toJsonLd(options?: {
7947
+ override toJsonLd(options?: {
7949
7948
  format?: "compact" | "expand";
7950
7949
  contextLoader?: DocumentLoader$1;
7951
7950
  context?: string | Record<string, string> | (string | Record<string, string>)[];
7952
7951
  }): Promise<unknown>;
7953
- protected isCompactable(): boolean;
7952
+ protected override isCompactable(): boolean;
7954
7953
  /**
7955
7954
  * Converts a JSON-LD structure to an object of this type.
7956
7955
  * @param json The JSON-LD structure to convert.
@@ -7962,7 +7961,7 @@ declare class Offer extends Activity {
7962
7961
  * @returns The object of this type.
7963
7962
  * @throws {TypeError} If the given `json` is invalid.
7964
7963
  */
7965
- static fromJsonLd(json: unknown, options?: {
7964
+ static override fromJsonLd(json: unknown, options?: {
7966
7965
  documentLoader?: DocumentLoader$1;
7967
7966
  contextLoader?: DocumentLoader$1;
7968
7967
  tracerProvider?: TracerProvider;
@@ -7974,7 +7973,7 @@ declare class Offer extends Activity {
7974
7973
  tracerProvider?: TracerProvider;
7975
7974
  baseUrl?: URL;
7976
7975
  }): Promise<Offer>;
7977
- protected _getCustomInspectProxy(): Record<string, unknown>;
7976
+ protected override _getCustomInspectProxy(): Record<string, unknown>;
7978
7977
  }
7979
7978
  /** A specialization of `Offer` in which the `actor` is extending an invitation
7980
7979
  * for the `object` to the `target`.
@@ -7983,7 +7982,7 @@ declare class Invite extends Offer {
7983
7982
  /**
7984
7983
  * The type URI of {@link Invite}: `https://www.w3.org/ns/activitystreams#Invite`.
7985
7984
  */
7986
- static get typeId(): URL;
7985
+ static override get typeId(): URL;
7987
7986
  /**
7988
7987
  * Constructs a new instance of Invite with the given values.
7989
7988
  * @param values The values to initialize the instance with.
@@ -8062,7 +8061,7 @@ declare class Invite extends Offer {
8062
8061
  * @param options The options to use for cloning.
8063
8062
  * @returns The cloned instance.
8064
8063
  */
8065
- clone(values?: {
8064
+ override clone(values?: {
8066
8065
  id?: URL | null;
8067
8066
  attachments?: (Object$1 | Link | PropertyValue | URL)[];
8068
8067
  attribution?: Application | Group | Organization | Person | Service | URL | null;
@@ -8138,12 +8137,12 @@ declare class Invite extends Offer {
8138
8137
  when `format` is set to `'expand'`.
8139
8138
  * @returns The JSON-LD representation of this object.
8140
8139
  */
8141
- toJsonLd(options?: {
8140
+ override toJsonLd(options?: {
8142
8141
  format?: "compact" | "expand";
8143
8142
  contextLoader?: DocumentLoader$1;
8144
8143
  context?: string | Record<string, string> | (string | Record<string, string>)[];
8145
8144
  }): Promise<unknown>;
8146
- protected isCompactable(): boolean;
8145
+ protected override isCompactable(): boolean;
8147
8146
  /**
8148
8147
  * Converts a JSON-LD structure to an object of this type.
8149
8148
  * @param json The JSON-LD structure to convert.
@@ -8155,7 +8154,7 @@ declare class Invite extends Offer {
8155
8154
  * @returns The object of this type.
8156
8155
  * @throws {TypeError} If the given `json` is invalid.
8157
8156
  */
8158
- static fromJsonLd(json: unknown, options?: {
8157
+ static override fromJsonLd(json: unknown, options?: {
8159
8158
  documentLoader?: DocumentLoader$1;
8160
8159
  contextLoader?: DocumentLoader$1;
8161
8160
  tracerProvider?: TracerProvider;
@@ -8167,7 +8166,7 @@ declare class Invite extends Offer {
8167
8166
  tracerProvider?: TracerProvider;
8168
8167
  baseUrl?: URL;
8169
8168
  }): Promise<Invite>;
8170
- protected _getCustomInspectProxy(): Record<string, unknown>;
8169
+ protected override _getCustomInspectProxy(): Record<string, unknown>;
8171
8170
  }
8172
8171
  /** Indicates that the `actor` has joined the `object`.
8173
8172
  * The `target` and `origin` typically have no defined meaning.
@@ -8176,7 +8175,7 @@ declare class Join extends Activity {
8176
8175
  /**
8177
8176
  * The type URI of {@link Join}: `https://www.w3.org/ns/activitystreams#Join`.
8178
8177
  */
8179
- static get typeId(): URL;
8178
+ static override get typeId(): URL;
8180
8179
  /**
8181
8180
  * Constructs a new instance of Join with the given values.
8182
8181
  * @param values The values to initialize the instance with.
@@ -8255,7 +8254,7 @@ declare class Join extends Activity {
8255
8254
  * @param options The options to use for cloning.
8256
8255
  * @returns The cloned instance.
8257
8256
  */
8258
- clone(values?: {
8257
+ override clone(values?: {
8259
8258
  id?: URL | null;
8260
8259
  attachments?: (Object$1 | Link | PropertyValue | URL)[];
8261
8260
  attribution?: Application | Group | Organization | Person | Service | URL | null;
@@ -8331,12 +8330,12 @@ declare class Join extends Activity {
8331
8330
  when `format` is set to `'expand'`.
8332
8331
  * @returns The JSON-LD representation of this object.
8333
8332
  */
8334
- toJsonLd(options?: {
8333
+ override toJsonLd(options?: {
8335
8334
  format?: "compact" | "expand";
8336
8335
  contextLoader?: DocumentLoader$1;
8337
8336
  context?: string | Record<string, string> | (string | Record<string, string>)[];
8338
8337
  }): Promise<unknown>;
8339
- protected isCompactable(): boolean;
8338
+ protected override isCompactable(): boolean;
8340
8339
  /**
8341
8340
  * Converts a JSON-LD structure to an object of this type.
8342
8341
  * @param json The JSON-LD structure to convert.
@@ -8348,7 +8347,7 @@ declare class Join extends Activity {
8348
8347
  * @returns The object of this type.
8349
8348
  * @throws {TypeError} If the given `json` is invalid.
8350
8349
  */
8351
- static fromJsonLd(json: unknown, options?: {
8350
+ static override fromJsonLd(json: unknown, options?: {
8352
8351
  documentLoader?: DocumentLoader$1;
8353
8352
  contextLoader?: DocumentLoader$1;
8354
8353
  tracerProvider?: TracerProvider;
@@ -8360,7 +8359,7 @@ declare class Join extends Activity {
8360
8359
  tracerProvider?: TracerProvider;
8361
8360
  baseUrl?: URL;
8362
8361
  }): Promise<Join>;
8363
- protected _getCustomInspectProxy(): Record<string, unknown>;
8362
+ protected override _getCustomInspectProxy(): Record<string, unknown>;
8364
8363
  }
8365
8364
  /** Indicates that the `actor` has left the `object`.
8366
8365
  * The `target` and `origin` typically have no meaning.
@@ -8369,7 +8368,7 @@ declare class Leave extends Activity {
8369
8368
  /**
8370
8369
  * The type URI of {@link Leave}: `https://www.w3.org/ns/activitystreams#Leave`.
8371
8370
  */
8372
- static get typeId(): URL;
8371
+ static override get typeId(): URL;
8373
8372
  /**
8374
8373
  * Constructs a new instance of Leave with the given values.
8375
8374
  * @param values The values to initialize the instance with.
@@ -8448,7 +8447,7 @@ declare class Leave extends Activity {
8448
8447
  * @param options The options to use for cloning.
8449
8448
  * @returns The cloned instance.
8450
8449
  */
8451
- clone(values?: {
8450
+ override clone(values?: {
8452
8451
  id?: URL | null;
8453
8452
  attachments?: (Object$1 | Link | PropertyValue | URL)[];
8454
8453
  attribution?: Application | Group | Organization | Person | Service | URL | null;
@@ -8524,12 +8523,12 @@ declare class Leave extends Activity {
8524
8523
  when `format` is set to `'expand'`.
8525
8524
  * @returns The JSON-LD representation of this object.
8526
8525
  */
8527
- toJsonLd(options?: {
8526
+ override toJsonLd(options?: {
8528
8527
  format?: "compact" | "expand";
8529
8528
  contextLoader?: DocumentLoader$1;
8530
8529
  context?: string | Record<string, string> | (string | Record<string, string>)[];
8531
8530
  }): Promise<unknown>;
8532
- protected isCompactable(): boolean;
8531
+ protected override isCompactable(): boolean;
8533
8532
  /**
8534
8533
  * Converts a JSON-LD structure to an object of this type.
8535
8534
  * @param json The JSON-LD structure to convert.
@@ -8541,7 +8540,7 @@ declare class Leave extends Activity {
8541
8540
  * @returns The object of this type.
8542
8541
  * @throws {TypeError} If the given `json` is invalid.
8543
8542
  */
8544
- static fromJsonLd(json: unknown, options?: {
8543
+ static override fromJsonLd(json: unknown, options?: {
8545
8544
  documentLoader?: DocumentLoader$1;
8546
8545
  contextLoader?: DocumentLoader$1;
8547
8546
  tracerProvider?: TracerProvider;
@@ -8553,7 +8552,7 @@ declare class Leave extends Activity {
8553
8552
  tracerProvider?: TracerProvider;
8554
8553
  baseUrl?: URL;
8555
8554
  }): Promise<Leave>;
8556
- protected _getCustomInspectProxy(): Record<string, unknown>;
8555
+ protected override _getCustomInspectProxy(): Record<string, unknown>;
8557
8556
  }
8558
8557
  /** Indicates that the `actor` likes, recommends or endorses the `object`.
8559
8558
  * The `target` and `origin` typically have no defined meaning.
@@ -8562,7 +8561,7 @@ declare class Like extends Activity {
8562
8561
  /**
8563
8562
  * The type URI of {@link Like}: `https://www.w3.org/ns/activitystreams#Like`.
8564
8563
  */
8565
- static get typeId(): URL;
8564
+ static override get typeId(): URL;
8566
8565
  /**
8567
8566
  * Constructs a new instance of Like with the given values.
8568
8567
  * @param values The values to initialize the instance with.
@@ -8641,7 +8640,7 @@ declare class Like extends Activity {
8641
8640
  * @param options The options to use for cloning.
8642
8641
  * @returns The cloned instance.
8643
8642
  */
8644
- clone(values?: {
8643
+ override clone(values?: {
8645
8644
  id?: URL | null;
8646
8645
  attachments?: (Object$1 | Link | PropertyValue | URL)[];
8647
8646
  attribution?: Application | Group | Organization | Person | Service | URL | null;
@@ -8717,12 +8716,12 @@ declare class Like extends Activity {
8717
8716
  when `format` is set to `'expand'`.
8718
8717
  * @returns The JSON-LD representation of this object.
8719
8718
  */
8720
- toJsonLd(options?: {
8719
+ override toJsonLd(options?: {
8721
8720
  format?: "compact" | "expand";
8722
8721
  contextLoader?: DocumentLoader$1;
8723
8722
  context?: string | Record<string, string> | (string | Record<string, string>)[];
8724
8723
  }): Promise<unknown>;
8725
- protected isCompactable(): boolean;
8724
+ protected override isCompactable(): boolean;
8726
8725
  /**
8727
8726
  * Converts a JSON-LD structure to an object of this type.
8728
8727
  * @param json The JSON-LD structure to convert.
@@ -8734,7 +8733,7 @@ declare class Like extends Activity {
8734
8733
  * @returns The object of this type.
8735
8734
  * @throws {TypeError} If the given `json` is invalid.
8736
8735
  */
8737
- static fromJsonLd(json: unknown, options?: {
8736
+ static override fromJsonLd(json: unknown, options?: {
8738
8737
  documentLoader?: DocumentLoader$1;
8739
8738
  contextLoader?: DocumentLoader$1;
8740
8739
  tracerProvider?: TracerProvider;
@@ -8746,7 +8745,7 @@ declare class Like extends Activity {
8746
8745
  tracerProvider?: TracerProvider;
8747
8746
  baseUrl?: URL;
8748
8747
  }): Promise<Like>;
8749
- protected _getCustomInspectProxy(): Record<string, unknown>;
8748
+ protected override _getCustomInspectProxy(): Record<string, unknown>;
8750
8749
  }
8751
8750
  /** Indicates that the `actor` has listened to the `object`.
8752
8751
  */
@@ -8754,7 +8753,7 @@ declare class Listen extends Activity {
8754
8753
  /**
8755
8754
  * The type URI of {@link Listen}: `https://www.w3.org/ns/activitystreams#Listen`.
8756
8755
  */
8757
- static get typeId(): URL;
8756
+ static override get typeId(): URL;
8758
8757
  /**
8759
8758
  * Constructs a new instance of Listen with the given values.
8760
8759
  * @param values The values to initialize the instance with.
@@ -8833,7 +8832,7 @@ declare class Listen extends Activity {
8833
8832
  * @param options The options to use for cloning.
8834
8833
  * @returns The cloned instance.
8835
8834
  */
8836
- clone(values?: {
8835
+ override clone(values?: {
8837
8836
  id?: URL | null;
8838
8837
  attachments?: (Object$1 | Link | PropertyValue | URL)[];
8839
8838
  attribution?: Application | Group | Organization | Person | Service | URL | null;
@@ -8909,12 +8908,12 @@ declare class Listen extends Activity {
8909
8908
  when `format` is set to `'expand'`.
8910
8909
  * @returns The JSON-LD representation of this object.
8911
8910
  */
8912
- toJsonLd(options?: {
8911
+ override toJsonLd(options?: {
8913
8912
  format?: "compact" | "expand";
8914
8913
  contextLoader?: DocumentLoader$1;
8915
8914
  context?: string | Record<string, string> | (string | Record<string, string>)[];
8916
8915
  }): Promise<unknown>;
8917
- protected isCompactable(): boolean;
8916
+ protected override isCompactable(): boolean;
8918
8917
  /**
8919
8918
  * Converts a JSON-LD structure to an object of this type.
8920
8919
  * @param json The JSON-LD structure to convert.
@@ -8926,7 +8925,7 @@ declare class Listen extends Activity {
8926
8925
  * @returns The object of this type.
8927
8926
  * @throws {TypeError} If the given `json` is invalid.
8928
8927
  */
8929
- static fromJsonLd(json: unknown, options?: {
8928
+ static override fromJsonLd(json: unknown, options?: {
8930
8929
  documentLoader?: DocumentLoader$1;
8931
8930
  contextLoader?: DocumentLoader$1;
8932
8931
  tracerProvider?: TracerProvider;
@@ -8938,7 +8937,7 @@ declare class Listen extends Activity {
8938
8937
  tracerProvider?: TracerProvider;
8939
8938
  baseUrl?: URL;
8940
8939
  }): Promise<Listen>;
8941
- protected _getCustomInspectProxy(): Record<string, unknown>;
8940
+ protected override _getCustomInspectProxy(): Record<string, unknown>;
8942
8941
  }
8943
8942
  /** A specialized {@link Link} that represents an @mention.
8944
8943
  */
@@ -8946,7 +8945,7 @@ declare class Mention extends Link {
8946
8945
  /**
8947
8946
  * The type URI of {@link Mention}: `https://www.w3.org/ns/activitystreams#Mention`.
8948
8947
  */
8949
- static get typeId(): URL;
8948
+ static override get typeId(): URL;
8950
8949
  /**
8951
8950
  * Constructs a new instance of Mention with the given values.
8952
8951
  * @param values The values to initialize the instance with.
@@ -8975,7 +8974,7 @@ declare class Mention extends Link {
8975
8974
  * @param options The options to use for cloning.
8976
8975
  * @returns The cloned instance.
8977
8976
  */
8978
- clone(values?: {
8977
+ override clone(values?: {
8979
8978
  id?: URL | null;
8980
8979
  href?: URL | null;
8981
8980
  rel?: string | null;
@@ -9001,12 +9000,12 @@ declare class Mention extends Link {
9001
9000
  when `format` is set to `'expand'`.
9002
9001
  * @returns The JSON-LD representation of this object.
9003
9002
  */
9004
- toJsonLd(options?: {
9003
+ override toJsonLd(options?: {
9005
9004
  format?: "compact" | "expand";
9006
9005
  contextLoader?: DocumentLoader$1;
9007
9006
  context?: string | Record<string, string> | (string | Record<string, string>)[];
9008
9007
  }): Promise<unknown>;
9009
- protected isCompactable(): boolean;
9008
+ protected override isCompactable(): boolean;
9010
9009
  /**
9011
9010
  * Converts a JSON-LD structure to an object of this type.
9012
9011
  * @param json The JSON-LD structure to convert.
@@ -9018,7 +9017,7 @@ declare class Mention extends Link {
9018
9017
  * @returns The object of this type.
9019
9018
  * @throws {TypeError} If the given `json` is invalid.
9020
9019
  */
9021
- static fromJsonLd(json: unknown, options?: {
9020
+ static override fromJsonLd(json: unknown, options?: {
9022
9021
  documentLoader?: DocumentLoader$1;
9023
9022
  contextLoader?: DocumentLoader$1;
9024
9023
  tracerProvider?: TracerProvider;
@@ -9030,7 +9029,7 @@ declare class Mention extends Link {
9030
9029
  tracerProvider?: TracerProvider;
9031
9030
  baseUrl?: URL;
9032
9031
  }): Promise<Mention>;
9033
- protected _getCustomInspectProxy(): Record<string, unknown>;
9032
+ protected override _getCustomInspectProxy(): Record<string, unknown>;
9034
9033
  }
9035
9034
  /** Indicates that the `actor` has moved `object` from `origin` to `target`.
9036
9035
  * If the `origin` or `target` are not specified,
@@ -9040,7 +9039,7 @@ declare class Move extends Activity {
9040
9039
  /**
9041
9040
  * The type URI of {@link Move}: `https://www.w3.org/ns/activitystreams#Move`.
9042
9041
  */
9043
- static get typeId(): URL;
9042
+ static override get typeId(): URL;
9044
9043
  /**
9045
9044
  * Constructs a new instance of Move with the given values.
9046
9045
  * @param values The values to initialize the instance with.
@@ -9119,7 +9118,7 @@ declare class Move extends Activity {
9119
9118
  * @param options The options to use for cloning.
9120
9119
  * @returns The cloned instance.
9121
9120
  */
9122
- clone(values?: {
9121
+ override clone(values?: {
9123
9122
  id?: URL | null;
9124
9123
  attachments?: (Object$1 | Link | PropertyValue | URL)[];
9125
9124
  attribution?: Application | Group | Organization | Person | Service | URL | null;
@@ -9195,12 +9194,12 @@ declare class Move extends Activity {
9195
9194
  when `format` is set to `'expand'`.
9196
9195
  * @returns The JSON-LD representation of this object.
9197
9196
  */
9198
- toJsonLd(options?: {
9197
+ override toJsonLd(options?: {
9199
9198
  format?: "compact" | "expand";
9200
9199
  contextLoader?: DocumentLoader$1;
9201
9200
  context?: string | Record<string, string> | (string | Record<string, string>)[];
9202
9201
  }): Promise<unknown>;
9203
- protected isCompactable(): boolean;
9202
+ protected override isCompactable(): boolean;
9204
9203
  /**
9205
9204
  * Converts a JSON-LD structure to an object of this type.
9206
9205
  * @param json The JSON-LD structure to convert.
@@ -9212,7 +9211,7 @@ declare class Move extends Activity {
9212
9211
  * @returns The object of this type.
9213
9212
  * @throws {TypeError} If the given `json` is invalid.
9214
9213
  */
9215
- static fromJsonLd(json: unknown, options?: {
9214
+ static override fromJsonLd(json: unknown, options?: {
9216
9215
  documentLoader?: DocumentLoader$1;
9217
9216
  contextLoader?: DocumentLoader$1;
9218
9217
  tracerProvider?: TracerProvider;
@@ -9224,7 +9223,7 @@ declare class Move extends Activity {
9224
9223
  tracerProvider?: TracerProvider;
9225
9224
  baseUrl?: URL;
9226
9225
  }): Promise<Move>;
9227
- protected _getCustomInspectProxy(): Record<string, unknown>;
9226
+ protected override _getCustomInspectProxy(): Record<string, unknown>;
9228
9227
  }
9229
9228
  /** Represents a short written work typically less than a single paragraph in
9230
9229
  * length.
@@ -9234,7 +9233,7 @@ declare class Note extends Object$1 {
9234
9233
  /**
9235
9234
  * The type URI of {@link Note}: `https://www.w3.org/ns/activitystreams#Note`.
9236
9235
  */
9237
- static get typeId(): URL;
9236
+ static override get typeId(): URL;
9238
9237
  /**
9239
9238
  * Constructs a new instance of Note with the given values.
9240
9239
  * @param values The values to initialize the instance with.
@@ -9302,7 +9301,7 @@ declare class Note extends Object$1 {
9302
9301
  * @param options The options to use for cloning.
9303
9302
  * @returns The cloned instance.
9304
9303
  */
9305
- clone(values?: {
9304
+ override clone(values?: {
9306
9305
  id?: URL | null;
9307
9306
  attachments?: (Object$1 | Link | PropertyValue | URL)[];
9308
9307
  attribution?: Application | Group | Organization | Person | Service | URL | null;
@@ -9379,12 +9378,12 @@ declare class Note extends Object$1 {
9379
9378
  when `format` is set to `'expand'`.
9380
9379
  * @returns The JSON-LD representation of this object.
9381
9380
  */
9382
- toJsonLd(options?: {
9381
+ override toJsonLd(options?: {
9383
9382
  format?: "compact" | "expand";
9384
9383
  contextLoader?: DocumentLoader$1;
9385
9384
  context?: string | Record<string, string> | (string | Record<string, string>)[];
9386
9385
  }): Promise<unknown>;
9387
- protected isCompactable(): boolean;
9386
+ protected override isCompactable(): boolean;
9388
9387
  /**
9389
9388
  * Converts a JSON-LD structure to an object of this type.
9390
9389
  * @param json The JSON-LD structure to convert.
@@ -9396,7 +9395,7 @@ declare class Note extends Object$1 {
9396
9395
  * @returns The object of this type.
9397
9396
  * @throws {TypeError} If the given `json` is invalid.
9398
9397
  */
9399
- static fromJsonLd(json: unknown, options?: {
9398
+ static override fromJsonLd(json: unknown, options?: {
9400
9399
  documentLoader?: DocumentLoader$1;
9401
9400
  contextLoader?: DocumentLoader$1;
9402
9401
  tracerProvider?: TracerProvider;
@@ -9408,7 +9407,7 @@ declare class Note extends Object$1 {
9408
9407
  tracerProvider?: TracerProvider;
9409
9408
  baseUrl?: URL;
9410
9409
  }): Promise<Note>;
9411
- protected _getCustomInspectProxy(): Record<string, unknown>;
9410
+ protected override _getCustomInspectProxy(): Record<string, unknown>;
9412
9411
  }
9413
9412
  /** A subtype of {@link Collection} in which members of the logical collection
9414
9413
  * are assumed to always be strictly ordered.
@@ -9418,7 +9417,7 @@ declare class OrderedCollection extends Collection {
9418
9417
  /**
9419
9418
  * The type URI of {@link OrderedCollection}: `https://www.w3.org/ns/activitystreams#OrderedCollection`.
9420
9419
  */
9421
- static get typeId(): URL;
9420
+ static override get typeId(): URL;
9422
9421
  /**
9423
9422
  * Constructs a new instance of OrderedCollection with the given values.
9424
9423
  * @param values The values to initialize the instance with.
@@ -9498,7 +9497,7 @@ declare class OrderedCollection extends Collection {
9498
9497
  * @param options The options to use for cloning.
9499
9498
  * @returns The cloned instance.
9500
9499
  */
9501
- clone(values?: {
9500
+ override clone(values?: {
9502
9501
  id?: URL | null;
9503
9502
  attachments?: (Object$1 | Link | PropertyValue | URL)[];
9504
9503
  attribution?: Application | Group | Organization | Person | Service | URL | null;
@@ -9570,11 +9569,11 @@ declare class OrderedCollection extends Collection {
9570
9569
  * {@link OrderedCollection.getItems},
9571
9570
  * but returns their `@id`s instead of the objects themselves.
9572
9571
  */
9573
- get itemIds(): URL[];
9572
+ override get itemIds(): URL[];
9574
9573
  /** Identifies the items contained in a collection. The items might be ordered
9575
9574
  * or unordered.
9576
9575
  */
9577
- getItems(options?: {
9576
+ override getItems(options?: {
9578
9577
  documentLoader?: DocumentLoader$1;
9579
9578
  contextLoader?: DocumentLoader$1;
9580
9579
  suppressError?: boolean;
@@ -9591,12 +9590,12 @@ declare class OrderedCollection extends Collection {
9591
9590
  when `format` is set to `'expand'`.
9592
9591
  * @returns The JSON-LD representation of this object.
9593
9592
  */
9594
- toJsonLd(options?: {
9593
+ override toJsonLd(options?: {
9595
9594
  format?: "compact" | "expand";
9596
9595
  contextLoader?: DocumentLoader$1;
9597
9596
  context?: string | Record<string, string> | (string | Record<string, string>)[];
9598
9597
  }): Promise<unknown>;
9599
- protected isCompactable(): boolean;
9598
+ protected override isCompactable(): boolean;
9600
9599
  /**
9601
9600
  * Converts a JSON-LD structure to an object of this type.
9602
9601
  * @param json The JSON-LD structure to convert.
@@ -9608,7 +9607,7 @@ declare class OrderedCollection extends Collection {
9608
9607
  * @returns The object of this type.
9609
9608
  * @throws {TypeError} If the given `json` is invalid.
9610
9609
  */
9611
- static fromJsonLd(json: unknown, options?: {
9610
+ static override fromJsonLd(json: unknown, options?: {
9612
9611
  documentLoader?: DocumentLoader$1;
9613
9612
  contextLoader?: DocumentLoader$1;
9614
9613
  tracerProvider?: TracerProvider;
@@ -9620,7 +9619,7 @@ declare class OrderedCollection extends Collection {
9620
9619
  tracerProvider?: TracerProvider;
9621
9620
  baseUrl?: URL;
9622
9621
  }): Promise<OrderedCollection>;
9623
- protected _getCustomInspectProxy(): Record<string, unknown>;
9622
+ protected override _getCustomInspectProxy(): Record<string, unknown>;
9624
9623
  }
9625
9624
  /** Used to represent ordered subsets of items from an `OrderedCollection`.
9626
9625
  * Refer to the Activity Streams 2.0 Core for a complete description of
@@ -9631,7 +9630,7 @@ declare class OrderedCollectionPage extends CollectionPage {
9631
9630
  /**
9632
9631
  * The type URI of {@link OrderedCollectionPage}: `https://www.w3.org/ns/activitystreams#OrderedCollectionPage`.
9633
9632
  */
9634
- static get typeId(): URL;
9633
+ static override get typeId(): URL;
9635
9634
  /**
9636
9635
  * Constructs a new instance of OrderedCollectionPage with the given values.
9637
9636
  * @param values The values to initialize the instance with.
@@ -9715,7 +9714,7 @@ declare class OrderedCollectionPage extends CollectionPage {
9715
9714
  * @param options The options to use for cloning.
9716
9715
  * @returns The cloned instance.
9717
9716
  */
9718
- clone(values?: {
9717
+ override clone(values?: {
9719
9718
  id?: URL | null;
9720
9719
  attachments?: (Object$1 | Link | PropertyValue | URL)[];
9721
9720
  attribution?: Application | Group | Organization | Person | Service | URL | null;
@@ -9791,11 +9790,11 @@ declare class OrderedCollectionPage extends CollectionPage {
9791
9790
  * {@link OrderedCollectionPage.getItems},
9792
9791
  * but returns their `@id`s instead of the objects themselves.
9793
9792
  */
9794
- get itemIds(): URL[];
9793
+ override get itemIds(): URL[];
9795
9794
  /** Identifies the items contained in a collection. The items might be ordered
9796
9795
  * or unordered.
9797
9796
  */
9798
- getItems(options?: {
9797
+ override getItems(options?: {
9799
9798
  documentLoader?: DocumentLoader$1;
9800
9799
  contextLoader?: DocumentLoader$1;
9801
9800
  suppressError?: boolean;
@@ -9816,12 +9815,12 @@ declare class OrderedCollectionPage extends CollectionPage {
9816
9815
  when `format` is set to `'expand'`.
9817
9816
  * @returns The JSON-LD representation of this object.
9818
9817
  */
9819
- toJsonLd(options?: {
9818
+ override toJsonLd(options?: {
9820
9819
  format?: "compact" | "expand";
9821
9820
  contextLoader?: DocumentLoader$1;
9822
9821
  context?: string | Record<string, string> | (string | Record<string, string>)[];
9823
9822
  }): Promise<unknown>;
9824
- protected isCompactable(): boolean;
9823
+ protected override isCompactable(): boolean;
9825
9824
  /**
9826
9825
  * Converts a JSON-LD structure to an object of this type.
9827
9826
  * @param json The JSON-LD structure to convert.
@@ -9833,7 +9832,7 @@ declare class OrderedCollectionPage extends CollectionPage {
9833
9832
  * @returns The object of this type.
9834
9833
  * @throws {TypeError} If the given `json` is invalid.
9835
9834
  */
9836
- static fromJsonLd(json: unknown, options?: {
9835
+ static override fromJsonLd(json: unknown, options?: {
9837
9836
  documentLoader?: DocumentLoader$1;
9838
9837
  contextLoader?: DocumentLoader$1;
9839
9838
  tracerProvider?: TracerProvider;
@@ -9845,7 +9844,7 @@ declare class OrderedCollectionPage extends CollectionPage {
9845
9844
  tracerProvider?: TracerProvider;
9846
9845
  baseUrl?: URL;
9847
9846
  }): Promise<OrderedCollectionPage>;
9848
- protected _getCustomInspectProxy(): Record<string, unknown>;
9847
+ protected override _getCustomInspectProxy(): Record<string, unknown>;
9849
9848
  }
9850
9849
  /** Represents an organization.
9851
9850
  */
@@ -9854,7 +9853,7 @@ declare class Organization extends Object$1 {
9854
9853
  /**
9855
9854
  * The type URI of {@link Organization}: `https://www.w3.org/ns/activitystreams#Organization`.
9856
9855
  */
9857
- static get typeId(): URL;
9856
+ static override get typeId(): URL;
9858
9857
  /**
9859
9858
  * Constructs a new instance of Organization with the given values.
9860
9859
  * @param values The values to initialize the instance with.
@@ -9948,7 +9947,7 @@ declare class Organization extends Object$1 {
9948
9947
  * @param options The options to use for cloning.
9949
9948
  * @returns The cloned instance.
9950
9949
  */
9951
- clone(values?: {
9950
+ override clone(values?: {
9952
9951
  id?: URL | null;
9953
9952
  attachments?: (Object$1 | Link | PropertyValue | URL)[];
9954
9953
  attribution?: Application | Group | Organization | Person | Service | URL | null;
@@ -10402,12 +10401,12 @@ declare class Organization extends Object$1 {
10402
10401
  when `format` is set to `'expand'`.
10403
10402
  * @returns The JSON-LD representation of this object.
10404
10403
  */
10405
- toJsonLd(options?: {
10404
+ override toJsonLd(options?: {
10406
10405
  format?: "compact" | "expand";
10407
10406
  contextLoader?: DocumentLoader$1;
10408
10407
  context?: string | Record<string, string> | (string | Record<string, string>)[];
10409
10408
  }): Promise<unknown>;
10410
- protected isCompactable(): boolean;
10409
+ protected override isCompactable(): boolean;
10411
10410
  /**
10412
10411
  * Converts a JSON-LD structure to an object of this type.
10413
10412
  * @param json The JSON-LD structure to convert.
@@ -10419,7 +10418,7 @@ declare class Organization extends Object$1 {
10419
10418
  * @returns The object of this type.
10420
10419
  * @throws {TypeError} If the given `json` is invalid.
10421
10420
  */
10422
- static fromJsonLd(json: unknown, options?: {
10421
+ static override fromJsonLd(json: unknown, options?: {
10423
10422
  documentLoader?: DocumentLoader$1;
10424
10423
  contextLoader?: DocumentLoader$1;
10425
10424
  tracerProvider?: TracerProvider;
@@ -10431,7 +10430,7 @@ declare class Organization extends Object$1 {
10431
10430
  tracerProvider?: TracerProvider;
10432
10431
  baseUrl?: URL;
10433
10432
  }): Promise<Organization>;
10434
- protected _getCustomInspectProxy(): Record<string, unknown>;
10433
+ protected override _getCustomInspectProxy(): Record<string, unknown>;
10435
10434
  }
10436
10435
  /** Represents a Web Page.
10437
10436
  */
@@ -10439,7 +10438,7 @@ declare class Page extends Document {
10439
10438
  /**
10440
10439
  * The type URI of {@link Page}: `https://www.w3.org/ns/activitystreams#Page`.
10441
10440
  */
10442
- static get typeId(): URL;
10441
+ static override get typeId(): URL;
10443
10442
  /**
10444
10443
  * Constructs a new instance of Page with the given values.
10445
10444
  * @param values The values to initialize the instance with.
@@ -10508,7 +10507,7 @@ declare class Page extends Document {
10508
10507
  * @param options The options to use for cloning.
10509
10508
  * @returns The cloned instance.
10510
10509
  */
10511
- clone(values?: {
10510
+ override clone(values?: {
10512
10511
  id?: URL | null;
10513
10512
  attachments?: (Object$1 | Link | PropertyValue | URL)[];
10514
10513
  attribution?: Application | Group | Organization | Person | Service | URL | null;
@@ -10574,12 +10573,12 @@ declare class Page extends Document {
10574
10573
  when `format` is set to `'expand'`.
10575
10574
  * @returns The JSON-LD representation of this object.
10576
10575
  */
10577
- toJsonLd(options?: {
10576
+ override toJsonLd(options?: {
10578
10577
  format?: "compact" | "expand";
10579
10578
  contextLoader?: DocumentLoader$1;
10580
10579
  context?: string | Record<string, string> | (string | Record<string, string>)[];
10581
10580
  }): Promise<unknown>;
10582
- protected isCompactable(): boolean;
10581
+ protected override isCompactable(): boolean;
10583
10582
  /**
10584
10583
  * Converts a JSON-LD structure to an object of this type.
10585
10584
  * @param json The JSON-LD structure to convert.
@@ -10591,7 +10590,7 @@ declare class Page extends Document {
10591
10590
  * @returns The object of this type.
10592
10591
  * @throws {TypeError} If the given `json` is invalid.
10593
10592
  */
10594
- static fromJsonLd(json: unknown, options?: {
10593
+ static override fromJsonLd(json: unknown, options?: {
10595
10594
  documentLoader?: DocumentLoader$1;
10596
10595
  contextLoader?: DocumentLoader$1;
10597
10596
  tracerProvider?: TracerProvider;
@@ -10603,7 +10602,7 @@ declare class Page extends Document {
10603
10602
  tracerProvider?: TracerProvider;
10604
10603
  baseUrl?: URL;
10605
10604
  }): Promise<Page>;
10606
- protected _getCustomInspectProxy(): Record<string, unknown>;
10605
+ protected override _getCustomInspectProxy(): Record<string, unknown>;
10607
10606
  }
10608
10607
  /** Represents an individual person.
10609
10608
  */
@@ -10612,7 +10611,7 @@ declare class Person extends Object$1 {
10612
10611
  /**
10613
10612
  * The type URI of {@link Person}: `https://www.w3.org/ns/activitystreams#Person`.
10614
10613
  */
10615
- static get typeId(): URL;
10614
+ static override get typeId(): URL;
10616
10615
  /**
10617
10616
  * Constructs a new instance of Person with the given values.
10618
10617
  * @param values The values to initialize the instance with.
@@ -10706,7 +10705,7 @@ declare class Person extends Object$1 {
10706
10705
  * @param options The options to use for cloning.
10707
10706
  * @returns The cloned instance.
10708
10707
  */
10709
- clone(values?: {
10708
+ override clone(values?: {
10710
10709
  id?: URL | null;
10711
10710
  attachments?: (Object$1 | Link | PropertyValue | URL)[];
10712
10711
  attribution?: Application | Group | Organization | Person | Service | URL | null;
@@ -11160,12 +11159,12 @@ declare class Person extends Object$1 {
11160
11159
  when `format` is set to `'expand'`.
11161
11160
  * @returns The JSON-LD representation of this object.
11162
11161
  */
11163
- toJsonLd(options?: {
11162
+ override toJsonLd(options?: {
11164
11163
  format?: "compact" | "expand";
11165
11164
  contextLoader?: DocumentLoader$1;
11166
11165
  context?: string | Record<string, string> | (string | Record<string, string>)[];
11167
11166
  }): Promise<unknown>;
11168
- protected isCompactable(): boolean;
11167
+ protected override isCompactable(): boolean;
11169
11168
  /**
11170
11169
  * Converts a JSON-LD structure to an object of this type.
11171
11170
  * @param json The JSON-LD structure to convert.
@@ -11177,7 +11176,7 @@ declare class Person extends Object$1 {
11177
11176
  * @returns The object of this type.
11178
11177
  * @throws {TypeError} If the given `json` is invalid.
11179
11178
  */
11180
- static fromJsonLd(json: unknown, options?: {
11179
+ static override fromJsonLd(json: unknown, options?: {
11181
11180
  documentLoader?: DocumentLoader$1;
11182
11181
  contextLoader?: DocumentLoader$1;
11183
11182
  tracerProvider?: TracerProvider;
@@ -11189,7 +11188,7 @@ declare class Person extends Object$1 {
11189
11188
  tracerProvider?: TracerProvider;
11190
11189
  baseUrl?: URL;
11191
11190
  }): Promise<Person>;
11192
- protected _getCustomInspectProxy(): Record<string, unknown>;
11191
+ protected override _getCustomInspectProxy(): Record<string, unknown>;
11193
11192
  }
11194
11193
  /** Represents a logical or physical location. See [5.3 Representing
11195
11194
  * Places](https://www.w3.org/TR/activitystreams-vocabulary/#places)
@@ -11200,7 +11199,7 @@ declare class Place extends Object$1 {
11200
11199
  /**
11201
11200
  * The type URI of {@link Place}: `https://www.w3.org/ns/activitystreams#Place`.
11202
11201
  */
11203
- static get typeId(): URL;
11202
+ static override get typeId(): URL;
11204
11203
  /**
11205
11204
  * Constructs a new instance of Place with the given values.
11206
11205
  * @param values The values to initialize the instance with.
@@ -11273,7 +11272,7 @@ declare class Place extends Object$1 {
11273
11272
  * @param options The options to use for cloning.
11274
11273
  * @returns The cloned instance.
11275
11274
  */
11276
- clone(values?: {
11275
+ override clone(values?: {
11277
11276
  id?: URL | null;
11278
11277
  attachments?: (Object$1 | Link | PropertyValue | URL)[];
11279
11278
  attribution?: Application | Group | Organization | Person | Service | URL | null;
@@ -11369,12 +11368,12 @@ declare class Place extends Object$1 {
11369
11368
  when `format` is set to `'expand'`.
11370
11369
  * @returns The JSON-LD representation of this object.
11371
11370
  */
11372
- toJsonLd(options?: {
11371
+ override toJsonLd(options?: {
11373
11372
  format?: "compact" | "expand";
11374
11373
  contextLoader?: DocumentLoader$1;
11375
11374
  context?: string | Record<string, string> | (string | Record<string, string>)[];
11376
11375
  }): Promise<unknown>;
11377
- protected isCompactable(): boolean;
11376
+ protected override isCompactable(): boolean;
11378
11377
  /**
11379
11378
  * Converts a JSON-LD structure to an object of this type.
11380
11379
  * @param json The JSON-LD structure to convert.
@@ -11386,7 +11385,7 @@ declare class Place extends Object$1 {
11386
11385
  * @returns The object of this type.
11387
11386
  * @throws {TypeError} If the given `json` is invalid.
11388
11387
  */
11389
- static fromJsonLd(json: unknown, options?: {
11388
+ static override fromJsonLd(json: unknown, options?: {
11390
11389
  documentLoader?: DocumentLoader$1;
11391
11390
  contextLoader?: DocumentLoader$1;
11392
11391
  tracerProvider?: TracerProvider;
@@ -11398,7 +11397,7 @@ declare class Place extends Object$1 {
11398
11397
  tracerProvider?: TracerProvider;
11399
11398
  baseUrl?: URL;
11400
11399
  }): Promise<Place>;
11401
- protected _getCustomInspectProxy(): Record<string, unknown>;
11400
+ protected override _getCustomInspectProxy(): Record<string, unknown>;
11402
11401
  }
11403
11402
  /** A {@link Profile} is a content object that describes another {@link Object},
11404
11403
  * typically used to describe [Actor
@@ -11411,7 +11410,7 @@ declare class Profile extends Object$1 {
11411
11410
  /**
11412
11411
  * The type URI of {@link Profile}: `https://www.w3.org/ns/activitystreams#Profile`.
11413
11412
  */
11414
- static get typeId(): URL;
11413
+ static override get typeId(): URL;
11415
11414
  /**
11416
11415
  * Constructs a new instance of Profile with the given values.
11417
11416
  * @param values The values to initialize the instance with.
@@ -11479,7 +11478,7 @@ declare class Profile extends Object$1 {
11479
11478
  * @param options The options to use for cloning.
11480
11479
  * @returns The cloned instance.
11481
11480
  */
11482
- clone(values?: {
11481
+ override clone(values?: {
11483
11482
  id?: URL | null;
11484
11483
  attachments?: (Object$1 | Link | PropertyValue | URL)[];
11485
11484
  attribution?: Application | Group | Organization | Person | Service | URL | null;
@@ -11560,12 +11559,12 @@ declare class Profile extends Object$1 {
11560
11559
  when `format` is set to `'expand'`.
11561
11560
  * @returns The JSON-LD representation of this object.
11562
11561
  */
11563
- toJsonLd(options?: {
11562
+ override toJsonLd(options?: {
11564
11563
  format?: "compact" | "expand";
11565
11564
  contextLoader?: DocumentLoader$1;
11566
11565
  context?: string | Record<string, string> | (string | Record<string, string>)[];
11567
11566
  }): Promise<unknown>;
11568
- protected isCompactable(): boolean;
11567
+ protected override isCompactable(): boolean;
11569
11568
  /**
11570
11569
  * Converts a JSON-LD structure to an object of this type.
11571
11570
  * @param json The JSON-LD structure to convert.
@@ -11577,7 +11576,7 @@ declare class Profile extends Object$1 {
11577
11576
  * @returns The object of this type.
11578
11577
  * @throws {TypeError} If the given `json` is invalid.
11579
11578
  */
11580
- static fromJsonLd(json: unknown, options?: {
11579
+ static override fromJsonLd(json: unknown, options?: {
11581
11580
  documentLoader?: DocumentLoader$1;
11582
11581
  contextLoader?: DocumentLoader$1;
11583
11582
  tracerProvider?: TracerProvider;
@@ -11589,7 +11588,7 @@ declare class Profile extends Object$1 {
11589
11588
  tracerProvider?: TracerProvider;
11590
11589
  baseUrl?: URL;
11591
11590
  }): Promise<Profile>;
11592
- protected _getCustomInspectProxy(): Record<string, unknown>;
11591
+ protected override _getCustomInspectProxy(): Record<string, unknown>;
11593
11592
  }
11594
11593
  /** Represents a question being asked. Question objects are an extension of
11595
11594
  * {@link IntransitiveActivity}. That is, the Question object is an Activity,
@@ -11605,7 +11604,7 @@ declare class Question extends IntransitiveActivity {
11605
11604
  /**
11606
11605
  * The type URI of {@link Question}: `https://www.w3.org/ns/activitystreams#Question`.
11607
11606
  */
11608
- static get typeId(): URL;
11607
+ static override get typeId(): URL;
11609
11608
  /**
11610
11609
  * Constructs a new instance of Question with the given values.
11611
11610
  * @param values The values to initialize the instance with.
@@ -11689,7 +11688,7 @@ declare class Question extends IntransitiveActivity {
11689
11688
  * @param options The options to use for cloning.
11690
11689
  * @returns The cloned instance.
11691
11690
  */
11692
- clone(values?: {
11691
+ override clone(values?: {
11693
11692
  id?: URL | null;
11694
11693
  attachments?: (Object$1 | Link | PropertyValue | URL)[];
11695
11694
  attribution?: Application | Group | Organization | Person | Service | URL | null;
@@ -11824,12 +11823,12 @@ declare class Question extends IntransitiveActivity {
11824
11823
  when `format` is set to `'expand'`.
11825
11824
  * @returns The JSON-LD representation of this object.
11826
11825
  */
11827
- toJsonLd(options?: {
11826
+ override toJsonLd(options?: {
11828
11827
  format?: "compact" | "expand";
11829
11828
  contextLoader?: DocumentLoader$1;
11830
11829
  context?: string | Record<string, string> | (string | Record<string, string>)[];
11831
11830
  }): Promise<unknown>;
11832
- protected isCompactable(): boolean;
11831
+ protected override isCompactable(): boolean;
11833
11832
  /**
11834
11833
  * Converts a JSON-LD structure to an object of this type.
11835
11834
  * @param json The JSON-LD structure to convert.
@@ -11841,7 +11840,7 @@ declare class Question extends IntransitiveActivity {
11841
11840
  * @returns The object of this type.
11842
11841
  * @throws {TypeError} If the given `json` is invalid.
11843
11842
  */
11844
- static fromJsonLd(json: unknown, options?: {
11843
+ static override fromJsonLd(json: unknown, options?: {
11845
11844
  documentLoader?: DocumentLoader$1;
11846
11845
  contextLoader?: DocumentLoader$1;
11847
11846
  tracerProvider?: TracerProvider;
@@ -11853,7 +11852,7 @@ declare class Question extends IntransitiveActivity {
11853
11852
  tracerProvider?: TracerProvider;
11854
11853
  baseUrl?: URL;
11855
11854
  }): Promise<Question>;
11856
- protected _getCustomInspectProxy(): Record<string, unknown>;
11855
+ protected override _getCustomInspectProxy(): Record<string, unknown>;
11857
11856
  }
11858
11857
  /** Indicates that the `actor` has read the `object`.
11859
11858
  */
@@ -11861,7 +11860,7 @@ declare class Read extends Activity {
11861
11860
  /**
11862
11861
  * The type URI of {@link Read}: `https://www.w3.org/ns/activitystreams#Read`.
11863
11862
  */
11864
- static get typeId(): URL;
11863
+ static override get typeId(): URL;
11865
11864
  /**
11866
11865
  * Constructs a new instance of Read with the given values.
11867
11866
  * @param values The values to initialize the instance with.
@@ -11940,7 +11939,7 @@ declare class Read extends Activity {
11940
11939
  * @param options The options to use for cloning.
11941
11940
  * @returns The cloned instance.
11942
11941
  */
11943
- clone(values?: {
11942
+ override clone(values?: {
11944
11943
  id?: URL | null;
11945
11944
  attachments?: (Object$1 | Link | PropertyValue | URL)[];
11946
11945
  attribution?: Application | Group | Organization | Person | Service | URL | null;
@@ -12016,12 +12015,12 @@ declare class Read extends Activity {
12016
12015
  when `format` is set to `'expand'`.
12017
12016
  * @returns The JSON-LD representation of this object.
12018
12017
  */
12019
- toJsonLd(options?: {
12018
+ override toJsonLd(options?: {
12020
12019
  format?: "compact" | "expand";
12021
12020
  contextLoader?: DocumentLoader$1;
12022
12021
  context?: string | Record<string, string> | (string | Record<string, string>)[];
12023
12022
  }): Promise<unknown>;
12024
- protected isCompactable(): boolean;
12023
+ protected override isCompactable(): boolean;
12025
12024
  /**
12026
12025
  * Converts a JSON-LD structure to an object of this type.
12027
12026
  * @param json The JSON-LD structure to convert.
@@ -12033,7 +12032,7 @@ declare class Read extends Activity {
12033
12032
  * @returns The object of this type.
12034
12033
  * @throws {TypeError} If the given `json` is invalid.
12035
12034
  */
12036
- static fromJsonLd(json: unknown, options?: {
12035
+ static override fromJsonLd(json: unknown, options?: {
12037
12036
  documentLoader?: DocumentLoader$1;
12038
12037
  contextLoader?: DocumentLoader$1;
12039
12038
  tracerProvider?: TracerProvider;
@@ -12045,7 +12044,7 @@ declare class Read extends Activity {
12045
12044
  tracerProvider?: TracerProvider;
12046
12045
  baseUrl?: URL;
12047
12046
  }): Promise<Read>;
12048
- protected _getCustomInspectProxy(): Record<string, unknown>;
12047
+ protected override _getCustomInspectProxy(): Record<string, unknown>;
12049
12048
  }
12050
12049
  /** Indicates that the `actor` is rejecting the `object`. The `target` and
12051
12050
  * `origin` typically have no defined meaning.
@@ -12054,7 +12053,7 @@ declare class Reject extends Activity {
12054
12053
  /**
12055
12054
  * The type URI of {@link Reject}: `https://www.w3.org/ns/activitystreams#Reject`.
12056
12055
  */
12057
- static get typeId(): URL;
12056
+ static override get typeId(): URL;
12058
12057
  /**
12059
12058
  * Constructs a new instance of Reject with the given values.
12060
12059
  * @param values The values to initialize the instance with.
@@ -12133,7 +12132,7 @@ declare class Reject extends Activity {
12133
12132
  * @param options The options to use for cloning.
12134
12133
  * @returns The cloned instance.
12135
12134
  */
12136
- clone(values?: {
12135
+ override clone(values?: {
12137
12136
  id?: URL | null;
12138
12137
  attachments?: (Object$1 | Link | PropertyValue | URL)[];
12139
12138
  attribution?: Application | Group | Organization | Person | Service | URL | null;
@@ -12209,12 +12208,12 @@ declare class Reject extends Activity {
12209
12208
  when `format` is set to `'expand'`.
12210
12209
  * @returns The JSON-LD representation of this object.
12211
12210
  */
12212
- toJsonLd(options?: {
12211
+ override toJsonLd(options?: {
12213
12212
  format?: "compact" | "expand";
12214
12213
  contextLoader?: DocumentLoader$1;
12215
12214
  context?: string | Record<string, string> | (string | Record<string, string>)[];
12216
12215
  }): Promise<unknown>;
12217
- protected isCompactable(): boolean;
12216
+ protected override isCompactable(): boolean;
12218
12217
  /**
12219
12218
  * Converts a JSON-LD structure to an object of this type.
12220
12219
  * @param json The JSON-LD structure to convert.
@@ -12226,7 +12225,7 @@ declare class Reject extends Activity {
12226
12225
  * @returns The object of this type.
12227
12226
  * @throws {TypeError} If the given `json` is invalid.
12228
12227
  */
12229
- static fromJsonLd(json: unknown, options?: {
12228
+ static override fromJsonLd(json: unknown, options?: {
12230
12229
  documentLoader?: DocumentLoader$1;
12231
12230
  contextLoader?: DocumentLoader$1;
12232
12231
  tracerProvider?: TracerProvider;
@@ -12238,7 +12237,7 @@ declare class Reject extends Activity {
12238
12237
  tracerProvider?: TracerProvider;
12239
12238
  baseUrl?: URL;
12240
12239
  }): Promise<Reject>;
12241
- protected _getCustomInspectProxy(): Record<string, unknown>;
12240
+ protected override _getCustomInspectProxy(): Record<string, unknown>;
12242
12241
  }
12243
12242
  /** Describes a relationship between two individuals.
12244
12243
  * The {@link Relationship.subject} and {@link Relationship.object} properties
@@ -12253,7 +12252,7 @@ declare class Relationship extends Object$1 {
12253
12252
  /**
12254
12253
  * The type URI of {@link Relationship}: `https://www.w3.org/ns/activitystreams#Relationship`.
12255
12254
  */
12256
- static get typeId(): URL;
12255
+ static override get typeId(): URL;
12257
12256
  /**
12258
12257
  * Constructs a new instance of Relationship with the given values.
12259
12258
  * @param values The values to initialize the instance with.
@@ -12325,7 +12324,7 @@ declare class Relationship extends Object$1 {
12325
12324
  * @param options The options to use for cloning.
12326
12325
  * @returns The cloned instance.
12327
12326
  */
12328
- clone(values?: {
12327
+ override clone(values?: {
12329
12328
  id?: URL | null;
12330
12329
  attachments?: (Object$1 | Link | PropertyValue | URL)[];
12331
12330
  attribution?: Application | Group | Organization | Person | Service | URL | null;
@@ -12476,12 +12475,12 @@ declare class Relationship extends Object$1 {
12476
12475
  when `format` is set to `'expand'`.
12477
12476
  * @returns The JSON-LD representation of this object.
12478
12477
  */
12479
- toJsonLd(options?: {
12478
+ override toJsonLd(options?: {
12480
12479
  format?: "compact" | "expand";
12481
12480
  contextLoader?: DocumentLoader$1;
12482
12481
  context?: string | Record<string, string> | (string | Record<string, string>)[];
12483
12482
  }): Promise<unknown>;
12484
- protected isCompactable(): boolean;
12483
+ protected override isCompactable(): boolean;
12485
12484
  /**
12486
12485
  * Converts a JSON-LD structure to an object of this type.
12487
12486
  * @param json The JSON-LD structure to convert.
@@ -12493,7 +12492,7 @@ declare class Relationship extends Object$1 {
12493
12492
  * @returns The object of this type.
12494
12493
  * @throws {TypeError} If the given `json` is invalid.
12495
12494
  */
12496
- static fromJsonLd(json: unknown, options?: {
12495
+ static override fromJsonLd(json: unknown, options?: {
12497
12496
  documentLoader?: DocumentLoader$1;
12498
12497
  contextLoader?: DocumentLoader$1;
12499
12498
  tracerProvider?: TracerProvider;
@@ -12505,7 +12504,7 @@ declare class Relationship extends Object$1 {
12505
12504
  tracerProvider?: TracerProvider;
12506
12505
  baseUrl?: URL;
12507
12506
  }): Promise<Relationship>;
12508
- protected _getCustomInspectProxy(): Record<string, unknown>;
12507
+ protected override _getCustomInspectProxy(): Record<string, unknown>;
12509
12508
  }
12510
12509
  /** Indicates that the `actor` is removing the `object`. If specified,
12511
12510
  * the `origin` indicates the context from which the `object` is being removed.
@@ -12514,7 +12513,7 @@ declare class Remove extends Activity {
12514
12513
  /**
12515
12514
  * The type URI of {@link Remove}: `https://www.w3.org/ns/activitystreams#Remove`.
12516
12515
  */
12517
- static get typeId(): URL;
12516
+ static override get typeId(): URL;
12518
12517
  /**
12519
12518
  * Constructs a new instance of Remove with the given values.
12520
12519
  * @param values The values to initialize the instance with.
@@ -12593,7 +12592,7 @@ declare class Remove extends Activity {
12593
12592
  * @param options The options to use for cloning.
12594
12593
  * @returns The cloned instance.
12595
12594
  */
12596
- clone(values?: {
12595
+ override clone(values?: {
12597
12596
  id?: URL | null;
12598
12597
  attachments?: (Object$1 | Link | PropertyValue | URL)[];
12599
12598
  attribution?: Application | Group | Organization | Person | Service | URL | null;
@@ -12669,12 +12668,12 @@ declare class Remove extends Activity {
12669
12668
  when `format` is set to `'expand'`.
12670
12669
  * @returns The JSON-LD representation of this object.
12671
12670
  */
12672
- toJsonLd(options?: {
12671
+ override toJsonLd(options?: {
12673
12672
  format?: "compact" | "expand";
12674
12673
  contextLoader?: DocumentLoader$1;
12675
12674
  context?: string | Record<string, string> | (string | Record<string, string>)[];
12676
12675
  }): Promise<unknown>;
12677
- protected isCompactable(): boolean;
12676
+ protected override isCompactable(): boolean;
12678
12677
  /**
12679
12678
  * Converts a JSON-LD structure to an object of this type.
12680
12679
  * @param json The JSON-LD structure to convert.
@@ -12686,7 +12685,7 @@ declare class Remove extends Activity {
12686
12685
  * @returns The object of this type.
12687
12686
  * @throws {TypeError} If the given `json` is invalid.
12688
12687
  */
12689
- static fromJsonLd(json: unknown, options?: {
12688
+ static override fromJsonLd(json: unknown, options?: {
12690
12689
  documentLoader?: DocumentLoader$1;
12691
12690
  contextLoader?: DocumentLoader$1;
12692
12691
  tracerProvider?: TracerProvider;
@@ -12698,7 +12697,7 @@ declare class Remove extends Activity {
12698
12697
  tracerProvider?: TracerProvider;
12699
12698
  baseUrl?: URL;
12700
12699
  }): Promise<Remove>;
12701
- protected _getCustomInspectProxy(): Record<string, unknown>;
12700
+ protected override _getCustomInspectProxy(): Record<string, unknown>;
12702
12701
  }
12703
12702
  /** Represents a service of any kind.
12704
12703
  */
@@ -12707,7 +12706,7 @@ declare class Service extends Object$1 {
12707
12706
  /**
12708
12707
  * The type URI of {@link Service}: `https://www.w3.org/ns/activitystreams#Service`.
12709
12708
  */
12710
- static get typeId(): URL;
12709
+ static override get typeId(): URL;
12711
12710
  /**
12712
12711
  * Constructs a new instance of Service with the given values.
12713
12712
  * @param values The values to initialize the instance with.
@@ -12801,7 +12800,7 @@ declare class Service extends Object$1 {
12801
12800
  * @param options The options to use for cloning.
12802
12801
  * @returns The cloned instance.
12803
12802
  */
12804
- clone(values?: {
12803
+ override clone(values?: {
12805
12804
  id?: URL | null;
12806
12805
  attachments?: (Object$1 | Link | PropertyValue | URL)[];
12807
12806
  attribution?: Application | Group | Organization | Person | Service | URL | null;
@@ -13255,12 +13254,12 @@ declare class Service extends Object$1 {
13255
13254
  when `format` is set to `'expand'`.
13256
13255
  * @returns The JSON-LD representation of this object.
13257
13256
  */
13258
- toJsonLd(options?: {
13257
+ override toJsonLd(options?: {
13259
13258
  format?: "compact" | "expand";
13260
13259
  contextLoader?: DocumentLoader$1;
13261
13260
  context?: string | Record<string, string> | (string | Record<string, string>)[];
13262
13261
  }): Promise<unknown>;
13263
- protected isCompactable(): boolean;
13262
+ protected override isCompactable(): boolean;
13264
13263
  /**
13265
13264
  * Converts a JSON-LD structure to an object of this type.
13266
13265
  * @param json The JSON-LD structure to convert.
@@ -13272,7 +13271,7 @@ declare class Service extends Object$1 {
13272
13271
  * @returns The object of this type.
13273
13272
  * @throws {TypeError} If the given `json` is invalid.
13274
13273
  */
13275
- static fromJsonLd(json: unknown, options?: {
13274
+ static override fromJsonLd(json: unknown, options?: {
13276
13275
  documentLoader?: DocumentLoader$1;
13277
13276
  contextLoader?: DocumentLoader$1;
13278
13277
  tracerProvider?: TracerProvider;
@@ -13284,7 +13283,7 @@ declare class Service extends Object$1 {
13284
13283
  tracerProvider?: TracerProvider;
13285
13284
  baseUrl?: URL;
13286
13285
  }): Promise<Service>;
13287
- protected _getCustomInspectProxy(): Record<string, unknown>;
13286
+ protected override _getCustomInspectProxy(): Record<string, unknown>;
13288
13287
  }
13289
13288
  /** Contents of {@link Object}'s `source`.
13290
13289
  */
@@ -13392,7 +13391,7 @@ declare class TentativeAccept extends Accept {
13392
13391
  /**
13393
13392
  * The type URI of {@link TentativeAccept}: `https://www.w3.org/ns/activitystreams#TentativeAccept`.
13394
13393
  */
13395
- static get typeId(): URL;
13394
+ static override get typeId(): URL;
13396
13395
  /**
13397
13396
  * Constructs a new instance of TentativeAccept with the given values.
13398
13397
  * @param values The values to initialize the instance with.
@@ -13471,7 +13470,7 @@ declare class TentativeAccept extends Accept {
13471
13470
  * @param options The options to use for cloning.
13472
13471
  * @returns The cloned instance.
13473
13472
  */
13474
- clone(values?: {
13473
+ override clone(values?: {
13475
13474
  id?: URL | null;
13476
13475
  attachments?: (Object$1 | Link | PropertyValue | URL)[];
13477
13476
  attribution?: Application | Group | Organization | Person | Service | URL | null;
@@ -13547,12 +13546,12 @@ declare class TentativeAccept extends Accept {
13547
13546
  when `format` is set to `'expand'`.
13548
13547
  * @returns The JSON-LD representation of this object.
13549
13548
  */
13550
- toJsonLd(options?: {
13549
+ override toJsonLd(options?: {
13551
13550
  format?: "compact" | "expand";
13552
13551
  contextLoader?: DocumentLoader$1;
13553
13552
  context?: string | Record<string, string> | (string | Record<string, string>)[];
13554
13553
  }): Promise<unknown>;
13555
- protected isCompactable(): boolean;
13554
+ protected override isCompactable(): boolean;
13556
13555
  /**
13557
13556
  * Converts a JSON-LD structure to an object of this type.
13558
13557
  * @param json The JSON-LD structure to convert.
@@ -13564,7 +13563,7 @@ declare class TentativeAccept extends Accept {
13564
13563
  * @returns The object of this type.
13565
13564
  * @throws {TypeError} If the given `json` is invalid.
13566
13565
  */
13567
- static fromJsonLd(json: unknown, options?: {
13566
+ static override fromJsonLd(json: unknown, options?: {
13568
13567
  documentLoader?: DocumentLoader$1;
13569
13568
  contextLoader?: DocumentLoader$1;
13570
13569
  tracerProvider?: TracerProvider;
@@ -13576,7 +13575,7 @@ declare class TentativeAccept extends Accept {
13576
13575
  tracerProvider?: TracerProvider;
13577
13576
  baseUrl?: URL;
13578
13577
  }): Promise<TentativeAccept>;
13579
- protected _getCustomInspectProxy(): Record<string, unknown>;
13578
+ protected override _getCustomInspectProxy(): Record<string, unknown>;
13580
13579
  }
13581
13580
  /** A specialization of {@link Reject} in which
13582
13581
  * the rejection is considered tentative.
@@ -13585,7 +13584,7 @@ declare class TentativeReject extends Reject {
13585
13584
  /**
13586
13585
  * The type URI of {@link TentativeReject}: `https://www.w3.org/ns/activitystreams#TentativeReject`.
13587
13586
  */
13588
- static get typeId(): URL;
13587
+ static override get typeId(): URL;
13589
13588
  /**
13590
13589
  * Constructs a new instance of TentativeReject with the given values.
13591
13590
  * @param values The values to initialize the instance with.
@@ -13664,7 +13663,7 @@ declare class TentativeReject extends Reject {
13664
13663
  * @param options The options to use for cloning.
13665
13664
  * @returns The cloned instance.
13666
13665
  */
13667
- clone(values?: {
13666
+ override clone(values?: {
13668
13667
  id?: URL | null;
13669
13668
  attachments?: (Object$1 | Link | PropertyValue | URL)[];
13670
13669
  attribution?: Application | Group | Organization | Person | Service | URL | null;
@@ -13740,12 +13739,12 @@ declare class TentativeReject extends Reject {
13740
13739
  when `format` is set to `'expand'`.
13741
13740
  * @returns The JSON-LD representation of this object.
13742
13741
  */
13743
- toJsonLd(options?: {
13742
+ override toJsonLd(options?: {
13744
13743
  format?: "compact" | "expand";
13745
13744
  contextLoader?: DocumentLoader$1;
13746
13745
  context?: string | Record<string, string> | (string | Record<string, string>)[];
13747
13746
  }): Promise<unknown>;
13748
- protected isCompactable(): boolean;
13747
+ protected override isCompactable(): boolean;
13749
13748
  /**
13750
13749
  * Converts a JSON-LD structure to an object of this type.
13751
13750
  * @param json The JSON-LD structure to convert.
@@ -13757,7 +13756,7 @@ declare class TentativeReject extends Reject {
13757
13756
  * @returns The object of this type.
13758
13757
  * @throws {TypeError} If the given `json` is invalid.
13759
13758
  */
13760
- static fromJsonLd(json: unknown, options?: {
13759
+ static override fromJsonLd(json: unknown, options?: {
13761
13760
  documentLoader?: DocumentLoader$1;
13762
13761
  contextLoader?: DocumentLoader$1;
13763
13762
  tracerProvider?: TracerProvider;
@@ -13769,7 +13768,7 @@ declare class TentativeReject extends Reject {
13769
13768
  tracerProvider?: TracerProvider;
13770
13769
  baseUrl?: URL;
13771
13770
  }): Promise<TentativeReject>;
13772
- protected _getCustomInspectProxy(): Record<string, unknown>;
13771
+ protected override _getCustomInspectProxy(): Record<string, unknown>;
13773
13772
  }
13774
13773
  /** A `Tombstone` represents a content object that has been deleted.
13775
13774
  * It can be used in {@link Collection}s to signify that there used to be
@@ -13780,7 +13779,7 @@ declare class Tombstone extends Object$1 {
13780
13779
  /**
13781
13780
  * The type URI of {@link Tombstone}: `https://www.w3.org/ns/activitystreams#Tombstone`.
13782
13781
  */
13783
- static get typeId(): URL;
13782
+ static override get typeId(): URL;
13784
13783
  /**
13785
13784
  * Constructs a new instance of Tombstone with the given values.
13786
13785
  * @param values The values to initialize the instance with.
@@ -13848,7 +13847,7 @@ declare class Tombstone extends Object$1 {
13848
13847
  * @param options The options to use for cloning.
13849
13848
  * @returns The cloned instance.
13850
13849
  */
13851
- clone(values?: {
13850
+ override clone(values?: {
13852
13851
  id?: URL | null;
13853
13852
  attachments?: (Object$1 | Link | PropertyValue | URL)[];
13854
13853
  attribution?: Application | Group | Organization | Person | Service | URL | null;
@@ -13917,12 +13916,12 @@ declare class Tombstone extends Object$1 {
13917
13916
  when `format` is set to `'expand'`.
13918
13917
  * @returns The JSON-LD representation of this object.
13919
13918
  */
13920
- toJsonLd(options?: {
13919
+ override toJsonLd(options?: {
13921
13920
  format?: "compact" | "expand";
13922
13921
  contextLoader?: DocumentLoader$1;
13923
13922
  context?: string | Record<string, string> | (string | Record<string, string>)[];
13924
13923
  }): Promise<unknown>;
13925
- protected isCompactable(): boolean;
13924
+ protected override isCompactable(): boolean;
13926
13925
  /**
13927
13926
  * Converts a JSON-LD structure to an object of this type.
13928
13927
  * @param json The JSON-LD structure to convert.
@@ -13934,7 +13933,7 @@ declare class Tombstone extends Object$1 {
13934
13933
  * @returns The object of this type.
13935
13934
  * @throws {TypeError} If the given `json` is invalid.
13936
13935
  */
13937
- static fromJsonLd(json: unknown, options?: {
13936
+ static override fromJsonLd(json: unknown, options?: {
13938
13937
  documentLoader?: DocumentLoader$1;
13939
13938
  contextLoader?: DocumentLoader$1;
13940
13939
  tracerProvider?: TracerProvider;
@@ -13946,7 +13945,7 @@ declare class Tombstone extends Object$1 {
13946
13945
  tracerProvider?: TracerProvider;
13947
13946
  baseUrl?: URL;
13948
13947
  }): Promise<Tombstone>;
13949
- protected _getCustomInspectProxy(): Record<string, unknown>;
13948
+ protected override _getCustomInspectProxy(): Record<string, unknown>;
13950
13949
  }
13951
13950
  /** Indicates that the `actor` is traveling to `target` from `origin`.
13952
13951
  * `Travel` is an `IntransitiveObject` whose `actor` specifies the direct object.
@@ -13957,7 +13956,7 @@ declare class Travel extends IntransitiveActivity {
13957
13956
  /**
13958
13957
  * The type URI of {@link Travel}: `https://www.w3.org/ns/activitystreams#Travel`.
13959
13958
  */
13960
- static get typeId(): URL;
13959
+ static override get typeId(): URL;
13961
13960
  /**
13962
13961
  * Constructs a new instance of Travel with the given values.
13963
13962
  * @param values The values to initialize the instance with.
@@ -14036,7 +14035,7 @@ declare class Travel extends IntransitiveActivity {
14036
14035
  * @param options The options to use for cloning.
14037
14036
  * @returns The cloned instance.
14038
14037
  */
14039
- clone(values?: {
14038
+ override clone(values?: {
14040
14039
  id?: URL | null;
14041
14040
  attachments?: (Object$1 | Link | PropertyValue | URL)[];
14042
14041
  attribution?: Application | Group | Organization | Person | Service | URL | null;
@@ -14112,12 +14111,12 @@ declare class Travel extends IntransitiveActivity {
14112
14111
  when `format` is set to `'expand'`.
14113
14112
  * @returns The JSON-LD representation of this object.
14114
14113
  */
14115
- toJsonLd(options?: {
14114
+ override toJsonLd(options?: {
14116
14115
  format?: "compact" | "expand";
14117
14116
  contextLoader?: DocumentLoader$1;
14118
14117
  context?: string | Record<string, string> | (string | Record<string, string>)[];
14119
14118
  }): Promise<unknown>;
14120
- protected isCompactable(): boolean;
14119
+ protected override isCompactable(): boolean;
14121
14120
  /**
14122
14121
  * Converts a JSON-LD structure to an object of this type.
14123
14122
  * @param json The JSON-LD structure to convert.
@@ -14129,7 +14128,7 @@ declare class Travel extends IntransitiveActivity {
14129
14128
  * @returns The object of this type.
14130
14129
  * @throws {TypeError} If the given `json` is invalid.
14131
14130
  */
14132
- static fromJsonLd(json: unknown, options?: {
14131
+ static override fromJsonLd(json: unknown, options?: {
14133
14132
  documentLoader?: DocumentLoader$1;
14134
14133
  contextLoader?: DocumentLoader$1;
14135
14134
  tracerProvider?: TracerProvider;
@@ -14141,7 +14140,7 @@ declare class Travel extends IntransitiveActivity {
14141
14140
  tracerProvider?: TracerProvider;
14142
14141
  baseUrl?: URL;
14143
14142
  }): Promise<Travel>;
14144
- protected _getCustomInspectProxy(): Record<string, unknown>;
14143
+ protected override _getCustomInspectProxy(): Record<string, unknown>;
14145
14144
  }
14146
14145
  /** Indicates that the `actor` is undoing the `object`. In most cases,
14147
14146
  * the `object` will be an {@link Activity} describing some previously performed
@@ -14155,7 +14154,7 @@ declare class Undo extends Activity {
14155
14154
  /**
14156
14155
  * The type URI of {@link Undo}: `https://www.w3.org/ns/activitystreams#Undo`.
14157
14156
  */
14158
- static get typeId(): URL;
14157
+ static override get typeId(): URL;
14159
14158
  /**
14160
14159
  * Constructs a new instance of Undo with the given values.
14161
14160
  * @param values The values to initialize the instance with.
@@ -14234,7 +14233,7 @@ declare class Undo extends Activity {
14234
14233
  * @param options The options to use for cloning.
14235
14234
  * @returns The cloned instance.
14236
14235
  */
14237
- clone(values?: {
14236
+ override clone(values?: {
14238
14237
  id?: URL | null;
14239
14238
  attachments?: (Object$1 | Link | PropertyValue | URL)[];
14240
14239
  attribution?: Application | Group | Organization | Person | Service | URL | null;
@@ -14310,12 +14309,12 @@ declare class Undo extends Activity {
14310
14309
  when `format` is set to `'expand'`.
14311
14310
  * @returns The JSON-LD representation of this object.
14312
14311
  */
14313
- toJsonLd(options?: {
14312
+ override toJsonLd(options?: {
14314
14313
  format?: "compact" | "expand";
14315
14314
  contextLoader?: DocumentLoader$1;
14316
14315
  context?: string | Record<string, string> | (string | Record<string, string>)[];
14317
14316
  }): Promise<unknown>;
14318
- protected isCompactable(): boolean;
14317
+ protected override isCompactable(): boolean;
14319
14318
  /**
14320
14319
  * Converts a JSON-LD structure to an object of this type.
14321
14320
  * @param json The JSON-LD structure to convert.
@@ -14327,7 +14326,7 @@ declare class Undo extends Activity {
14327
14326
  * @returns The object of this type.
14328
14327
  * @throws {TypeError} If the given `json` is invalid.
14329
14328
  */
14330
- static fromJsonLd(json: unknown, options?: {
14329
+ static override fromJsonLd(json: unknown, options?: {
14331
14330
  documentLoader?: DocumentLoader$1;
14332
14331
  contextLoader?: DocumentLoader$1;
14333
14332
  tracerProvider?: TracerProvider;
@@ -14339,7 +14338,7 @@ declare class Undo extends Activity {
14339
14338
  tracerProvider?: TracerProvider;
14340
14339
  baseUrl?: URL;
14341
14340
  }): Promise<Undo>;
14342
- protected _getCustomInspectProxy(): Record<string, unknown>;
14341
+ protected override _getCustomInspectProxy(): Record<string, unknown>;
14343
14342
  }
14344
14343
  /** Indicates that the `actor` has updated the `object`. Note, however,
14345
14344
  * that this vocabulary does not define a mechanism for describing the actual
@@ -14351,7 +14350,7 @@ declare class Update extends Activity {
14351
14350
  /**
14352
14351
  * The type URI of {@link Update}: `https://www.w3.org/ns/activitystreams#Update`.
14353
14352
  */
14354
- static get typeId(): URL;
14353
+ static override get typeId(): URL;
14355
14354
  /**
14356
14355
  * Constructs a new instance of Update with the given values.
14357
14356
  * @param values The values to initialize the instance with.
@@ -14430,7 +14429,7 @@ declare class Update extends Activity {
14430
14429
  * @param options The options to use for cloning.
14431
14430
  * @returns The cloned instance.
14432
14431
  */
14433
- clone(values?: {
14432
+ override clone(values?: {
14434
14433
  id?: URL | null;
14435
14434
  attachments?: (Object$1 | Link | PropertyValue | URL)[];
14436
14435
  attribution?: Application | Group | Organization | Person | Service | URL | null;
@@ -14506,12 +14505,12 @@ declare class Update extends Activity {
14506
14505
  when `format` is set to `'expand'`.
14507
14506
  * @returns The JSON-LD representation of this object.
14508
14507
  */
14509
- toJsonLd(options?: {
14508
+ override toJsonLd(options?: {
14510
14509
  format?: "compact" | "expand";
14511
14510
  contextLoader?: DocumentLoader$1;
14512
14511
  context?: string | Record<string, string> | (string | Record<string, string>)[];
14513
14512
  }): Promise<unknown>;
14514
- protected isCompactable(): boolean;
14513
+ protected override isCompactable(): boolean;
14515
14514
  /**
14516
14515
  * Converts a JSON-LD structure to an object of this type.
14517
14516
  * @param json The JSON-LD structure to convert.
@@ -14523,7 +14522,7 @@ declare class Update extends Activity {
14523
14522
  * @returns The object of this type.
14524
14523
  * @throws {TypeError} If the given `json` is invalid.
14525
14524
  */
14526
- static fromJsonLd(json: unknown, options?: {
14525
+ static override fromJsonLd(json: unknown, options?: {
14527
14526
  documentLoader?: DocumentLoader$1;
14528
14527
  contextLoader?: DocumentLoader$1;
14529
14528
  tracerProvider?: TracerProvider;
@@ -14535,7 +14534,7 @@ declare class Update extends Activity {
14535
14534
  tracerProvider?: TracerProvider;
14536
14535
  baseUrl?: URL;
14537
14536
  }): Promise<Update>;
14538
- protected _getCustomInspectProxy(): Record<string, unknown>;
14537
+ protected override _getCustomInspectProxy(): Record<string, unknown>;
14539
14538
  }
14540
14539
  /** Represents a video document of any kind.
14541
14540
  */
@@ -14543,7 +14542,7 @@ declare class Video extends Document {
14543
14542
  /**
14544
14543
  * The type URI of {@link Video}: `https://www.w3.org/ns/activitystreams#Video`.
14545
14544
  */
14546
- static get typeId(): URL;
14545
+ static override get typeId(): URL;
14547
14546
  /**
14548
14547
  * Constructs a new instance of Video with the given values.
14549
14548
  * @param values The values to initialize the instance with.
@@ -14612,7 +14611,7 @@ declare class Video extends Document {
14612
14611
  * @param options The options to use for cloning.
14613
14612
  * @returns The cloned instance.
14614
14613
  */
14615
- clone(values?: {
14614
+ override clone(values?: {
14616
14615
  id?: URL | null;
14617
14616
  attachments?: (Object$1 | Link | PropertyValue | URL)[];
14618
14617
  attribution?: Application | Group | Organization | Person | Service | URL | null;
@@ -14678,12 +14677,12 @@ declare class Video extends Document {
14678
14677
  when `format` is set to `'expand'`.
14679
14678
  * @returns The JSON-LD representation of this object.
14680
14679
  */
14681
- toJsonLd(options?: {
14680
+ override toJsonLd(options?: {
14682
14681
  format?: "compact" | "expand";
14683
14682
  contextLoader?: DocumentLoader$1;
14684
14683
  context?: string | Record<string, string> | (string | Record<string, string>)[];
14685
14684
  }): Promise<unknown>;
14686
- protected isCompactable(): boolean;
14685
+ protected override isCompactable(): boolean;
14687
14686
  /**
14688
14687
  * Converts a JSON-LD structure to an object of this type.
14689
14688
  * @param json The JSON-LD structure to convert.
@@ -14695,7 +14694,7 @@ declare class Video extends Document {
14695
14694
  * @returns The object of this type.
14696
14695
  * @throws {TypeError} If the given `json` is invalid.
14697
14696
  */
14698
- static fromJsonLd(json: unknown, options?: {
14697
+ static override fromJsonLd(json: unknown, options?: {
14699
14698
  documentLoader?: DocumentLoader$1;
14700
14699
  contextLoader?: DocumentLoader$1;
14701
14700
  tracerProvider?: TracerProvider;
@@ -14707,7 +14706,7 @@ declare class Video extends Document {
14707
14706
  tracerProvider?: TracerProvider;
14708
14707
  baseUrl?: URL;
14709
14708
  }): Promise<Video>;
14710
- protected _getCustomInspectProxy(): Record<string, unknown>;
14709
+ protected override _getCustomInspectProxy(): Record<string, unknown>;
14711
14710
  }
14712
14711
  /** Indicates that the `actor` has viewed the object.
14713
14712
  */
@@ -14715,7 +14714,7 @@ declare class View extends Activity {
14715
14714
  /**
14716
14715
  * The type URI of {@link View}: `https://www.w3.org/ns/activitystreams#View`.
14717
14716
  */
14718
- static get typeId(): URL;
14717
+ static override get typeId(): URL;
14719
14718
  /**
14720
14719
  * Constructs a new instance of View with the given values.
14721
14720
  * @param values The values to initialize the instance with.
@@ -14794,7 +14793,7 @@ declare class View extends Activity {
14794
14793
  * @param options The options to use for cloning.
14795
14794
  * @returns The cloned instance.
14796
14795
  */
14797
- clone(values?: {
14796
+ override clone(values?: {
14798
14797
  id?: URL | null;
14799
14798
  attachments?: (Object$1 | Link | PropertyValue | URL)[];
14800
14799
  attribution?: Application | Group | Organization | Person | Service | URL | null;
@@ -14870,12 +14869,12 @@ declare class View extends Activity {
14870
14869
  when `format` is set to `'expand'`.
14871
14870
  * @returns The JSON-LD representation of this object.
14872
14871
  */
14873
- toJsonLd(options?: {
14872
+ override toJsonLd(options?: {
14874
14873
  format?: "compact" | "expand";
14875
14874
  contextLoader?: DocumentLoader$1;
14876
14875
  context?: string | Record<string, string> | (string | Record<string, string>)[];
14877
14876
  }): Promise<unknown>;
14878
- protected isCompactable(): boolean;
14877
+ protected override isCompactable(): boolean;
14879
14878
  /**
14880
14879
  * Converts a JSON-LD structure to an object of this type.
14881
14880
  * @param json The JSON-LD structure to convert.
@@ -14887,7 +14886,7 @@ declare class View extends Activity {
14887
14886
  * @returns The object of this type.
14888
14887
  * @throws {TypeError} If the given `json` is invalid.
14889
14888
  */
14890
- static fromJsonLd(json: unknown, options?: {
14889
+ static override fromJsonLd(json: unknown, options?: {
14891
14890
  documentLoader?: DocumentLoader$1;
14892
14891
  contextLoader?: DocumentLoader$1;
14893
14892
  tracerProvider?: TracerProvider;
@@ -14899,7 +14898,7 @@ declare class View extends Activity {
14899
14898
  tracerProvider?: TracerProvider;
14900
14899
  baseUrl?: URL;
14901
14900
  }): Promise<View>;
14902
- protected _getCustomInspectProxy(): Record<string, unknown>;
14901
+ protected override _getCustomInspectProxy(): Record<string, unknown>;
14903
14902
  }
14904
14903
  //#endregion
14905
14904
  //#region src/actor.d.ts
@@ -15327,4 +15326,4 @@ declare function getTypeId(object: Object$1 | Link | null): URL | null;
15327
15326
  */
15328
15327
  declare function getTypeId(object: Object$1 | Link | null | undefined): URL | null | undefined;
15329
15328
  //#endregion
15330
- export { Accept, Activity, Actor, ActorTypeName, Add, Announce, Application, Arrive, Article, Audio, Block, ChatMessage, Collection, CollectionPage, Create, CryptographicKey, DataIntegrityProof, Delete, DidService, Dislike, Document, DocumentLoader, Emoji, EmojiReact, Endpoints, Event, Export, FediverseHandle, Flag, Follow, GetActorHandleOptions, GetUserAgentOptions, Group, Hashtag, Ignore, Image, IntransitiveActivity, Invite, Join, LanguageString, Leave, Like, Link, Listen, LookupObjectOptions, Mention, Move, Multikey, NormalizeActorHandleOptions, Note, Object$1 as Object, Offer, OrderedCollection, OrderedCollectionPage, Organization, PUBLIC_COLLECTION, Page, Person, Place, Profile, PropertyValue, Question, Read, Recipient, Reject, Relationship, RemoteDocument, Remove, Service, Source, TentativeAccept, TentativeReject, Tombstone, Travel, TraverseCollectionOptions, Undo, Update, Video, View, getActorClassByTypeName, getActorHandle, getActorTypeName, getTypeId, isActor, isFediverseHandle, lookupObject, normalizeActorHandle, parseFediverseHandle, toAcctUrl, traverseCollection };
15329
+ export { Accept, Activity, Actor, ActorTypeName, Add, Announce, Application, Arrive, Article, Audio, Block, ChatMessage, Collection, CollectionPage, Create, CryptographicKey, DataIntegrityProof, Delete, DidService, Dislike, Document, type DocumentLoader, Emoji, EmojiReact, Endpoints, Event, Export, FediverseHandle, Flag, Follow, GetActorHandleOptions, type GetUserAgentOptions, Group, Hashtag, Ignore, Image, IntransitiveActivity, Invite, Join, LanguageString, Leave, Like, Link, Listen, LookupObjectOptions, Mention, Move, Multikey, NormalizeActorHandleOptions, Note, Object$1 as Object, Offer, OrderedCollection, OrderedCollectionPage, Organization, PUBLIC_COLLECTION, Page, Person, Place, Profile, PropertyValue, Question, Read, Recipient, Reject, Relationship, type RemoteDocument, Remove, Service, Source, TentativeAccept, TentativeReject, Tombstone, Travel, TraverseCollectionOptions, Undo, Update, Video, View, getActorClassByTypeName, getActorHandle, getActorTypeName, getTypeId, isActor, isFediverseHandle, lookupObject, normalizeActorHandle, parseFediverseHandle, toAcctUrl, traverseCollection };