chore(misskey-js): Unchanged files with check annotationsで紛らわしい部分の警告を抑制

ロジック面は後で直す
This commit is contained in:
Kisaragi Marine
2024-07-18 20:46:55 +09:00
parent 10ce7bf3c4
commit fad2ec5641
5 changed files with 10 additions and 0 deletions

View File

@@ -137,7 +137,9 @@ export const moderationLogTypes = [
export type ModerationLogPayloads = {
updateServerSettings: {
// eslint-disable-next-line @typescript-eslint/no-explicit-any
before: any | null;
// eslint-disable-next-line @typescript-eslint/no-explicit-any
after: any | null;
};
suspend: {
@@ -159,6 +161,7 @@ export type ModerationLogPayloads = {
};
addCustomEmoji: {
emojiId: string;
// eslint-disable-next-line @typescript-eslint/no-explicit-any
emoji: any;
};
updateCustomEmoji: {