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

View file

@ -4,9 +4,12 @@ import type {
Ad, Ad,
Announcement, Announcement,
EmojiDetailed, EmojiDetailed,
Flash,
GalleryPost,
InviteCode, InviteCode,
MetaDetailed, MetaDetailed,
Note, Note,
Page,
Role, Role,
ReversiGameDetailed, ReversiGameDetailed,
SystemWebhook, SystemWebhook,
@ -405,18 +408,18 @@ export type ModerationLogPayloads = {
pageId: string; pageId: string;
pageUserId: string; pageUserId: string;
pageUserUsername: string; pageUserUsername: string;
page: any; page: Page;
}; };
deleteFlash: { deleteFlash: {
flashId: string; flashId: string;
flashUserId: string; flashUserId: string;
flashUserUsername: string; flashUserUsername: string;
flash: any; flash: Flash;
}; };
deleteGalleryPost: { deleteGalleryPost: {
postId: string; postId: string;
postUserId: string; postUserId: string;
postUserUsername: string; postUserUsername: string;
post: any; post: GalleryPost;
}; };
}; };