fix(misskey-js): eliminate any (follow-up of #13523) (#14422)

This commit is contained in:
かっこかり 2024-08-17 18:15:46 +09:00 committed by GitHub
parent 0b98554319
commit 83c04c55ad
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 6 additions and 3 deletions

View File

@ -4,9 +4,12 @@ import type {
Ad,
Announcement,
EmojiDetailed,
Flash,
GalleryPost,
InviteCode,
MetaDetailed,
Note,
Page,
Role,
ReversiGameDetailed,
SystemWebhook,
@ -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;
};
};