Fixed 267U.pre2

This commit is contained in:
2026-07-26 18:25:37 +09:00
parent 50bfaeafdf
commit 317d00a284
1286 changed files with 80222 additions and 1 deletions
@@ -0,0 +1,35 @@
export class MastodonStream {
connection;
chName;
static shouldShare;
static requireCredential;
static requiredScopes = [];
get user() {
return this.connection.user;
}
get userProfile() {
return this.connection.userProfile;
}
get following() {
return this.connection.following;
}
get muting() {
return this.connection.muting;
}
get renoteMuting() {
return this.connection.renoteMuting;
}
get blocking() {
return this.connection.blocking;
}
get hidden() {
return this.connection.hidden;
}
get subscriber() {
return this.connection.subscriber;
}
constructor(connection, name){
this.chName = name;
this.connection = connection;
}
}