mirror of
https://github.com/sim1222/misskey.git
synced 2025-08-08 09:43:51 +09:00
refactor: fix type
This commit is contained in:
@ -19,7 +19,7 @@ import { StreamEventEmitter, StreamMessages } from './types.js';
|
||||
*/
|
||||
export default class Connection {
|
||||
public user?: User;
|
||||
public userProfile?: UserProfile;
|
||||
public userProfile?: UserProfile | null;
|
||||
public following: Set<User['id']> = new Set();
|
||||
public muting: Set<User['id']> = new Set();
|
||||
public blocking: Set<User['id']> = new Set(); // "被"blocking
|
||||
|
Reference in New Issue
Block a user