Skip to content

Commit

Permalink
fix(misskey-js): drive->folderUpdatedのpayloadの型が間違っていたのを修正
Browse files Browse the repository at this point in the history
  • Loading branch information
hideki0403 committed Jan 6, 2024
1 parent fe49440 commit 55a0080
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/misskey-js/src/streaming.types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ export type Channels = {
fileUpdated: (payload: DriveFile) => void;
folderCreated: (payload: DriveFolder) => void;
folderDeleted: (payload: DriveFolder['id']) => void;
folderUpdated: (payload: DriveFile) => void;
folderUpdated: (payload: DriveFolder) => void;
};
receives: null;
};
Expand Down

0 comments on commit 55a0080

Please sign in to comment.