fix(misskey-js): correct noteUpdated event type (#14632)

This commit is contained in:
zyoshoka 2024-09-25 17:35:54 +09:00 committed by GitHub
parent 0f8b15f0fe
commit f2385a8ffc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -233,7 +233,7 @@ export type Channels = {
} }
}; };
export type NoteUpdatedEvent = { export type NoteUpdatedEvent = { id: Note['id'] } & ({
type: 'reacted'; type: 'reacted';
body: { body: {
reaction: string; reaction: string;
@ -257,7 +257,7 @@ export type NoteUpdatedEvent = {
choice: number; choice: number;
userId: User['id']; userId: User['id'];
}; };
}; });
export type BroadcastEvents = { export type BroadcastEvents = {
noteUpdated: (payload: NoteUpdatedEvent) => void; noteUpdated: (payload: NoteUpdatedEvent) => void;