Skip to content

Commit

Permalink
fix(misskey-js): eliminate any (follow-up of #13523)
Browse files Browse the repository at this point in the history
  • Loading branch information
kakkokari-gtyih committed Aug 17, 2024
1 parent c0de57c commit f267463
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions packages/misskey-js/src/consts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,12 @@ import type {
Ad,
Announcement,
EmojiDetailed,
Flash,
GalleryPost,
InviteCode,
MetaDetailed,
Note,
Page,
Role,
ReversiGameDetailed,
SystemWebhook,
Expand Down Expand Up @@ -405,18 +408,18 @@ export type ModerationLogPayloads = {
pageId: string;
pageUserId: string;
pageUserUsername: string;
page: any;
page: Page;
};
deleteFlash: {
flashId: string;
flashUserId: string;
flashUserUsername: string;
flash: any;
flash: Flash;
};
deleteGalleryPost: {
postId: string;
postUserId: string;
postUserUsername: string;
post: any;
post: GalleryPost;
};
};

0 comments on commit f267463

Please sign in to comment.