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

View File

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