We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a399927 commit 020b660Copy full SHA for 020b660
packages/relay/src/relay.ts
@@ -62,10 +62,11 @@ export interface Relay {
62
setSubscriptionHandler(handler: SubscriptionRequestHandler): this;
63
}
64
65
-type LitePubRelayFollower = {
66
- actor: unknown;
67
- state: string;
68
-};
+interface LitePubRelayFollower {
+ readonly actor: unknown;
+ readonly state: string;
+}
69
+
70
/**
71
* A Mastodon-compatible ActivityPub relay implementation.
72
* This relay follows Mastodon's relay protocol for maximum compatibility
0 commit comments