This commit is contained in:
syuilo 2023-09-23 18:15:49 +09:00
parent a4701edb41
commit e7d4e02415
2 changed files with 5 additions and 1 deletions

4
locales/index.d.ts vendored
View File

@ -2258,6 +2258,10 @@ export interface Locale {
"addCustomEmoji": string;
"updateServerSettings": string;
"updateUserNote": string;
"deleteDriveFile": string;
"deleteNote": string;
"createGlobalAnnouncement": string;
"createUserAnnouncement": string;
};
}
declare const locales: {

View File

@ -2559,7 +2559,7 @@ type ModerationLog = {
});
// @public (undocumented)
export const moderationLogTypes: readonly ["updateServerSettings", "suspend", "unsuspend", "updateUserNote", "addCustomEmoji", "assignRole", "unassignRole", "updateRole", "deleteRole", "clearQueue", "promoteQueue"];
export const moderationLogTypes: readonly ["updateServerSettings", "suspend", "unsuspend", "updateUserNote", "addCustomEmoji", "assignRole", "unassignRole", "updateRole", "deleteRole", "clearQueue", "promoteQueue", "deleteDriveFile", "deleteNote", "createGlobalAnnouncement", "createUserAnnouncement"];
// @public (undocumented)
export const mutedNoteReasons: readonly ["word", "manual", "spam", "other"];