Merge branch 'develop' into feat-1714

This commit is contained in:
かっこかり 2024-07-15 10:11:15 +09:00 committed by GitHub
commit 8d144c8fdc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
85 changed files with 1222 additions and 831 deletions

View file

@ -4786,6 +4786,7 @@ export type components = {
canHideAds: boolean;
driveCapacityMb: number;
alwaysMarkNsfw: boolean;
canUpdateBioMedia: boolean;
pinLimit: number;
antennaLimit: number;
wordMuteLimit: number;

View file

@ -318,7 +318,9 @@ export abstract class Connection<Channel extends AnyOf<Channels> = any> extends
this.stream = stream;
this.channel = channel;
this.name = name;
if (name !== undefined) {
this.name = name;
}
}
public send<T extends keyof Channel['receives']>(type: T, body: Channel['receives'][T]): void {