Update misskey-js.api.md

This commit is contained in:
syuilo 2023-08-13 12:14:14 +09:00
parent 2cac0cfe1a
commit d0b341495b
1 changed files with 5 additions and 0 deletions

View File

@ -30,6 +30,10 @@ type Announcement = {
text: string;
title: string;
imageUrl: string | null;
display: 'normal' | 'banner' | 'dialog';
icon: 'info' | 'warning' | 'error' | 'success';
needConfirmationToRead: boolean;
forYou: boolean;
isRead?: boolean;
};
@ -2453,6 +2457,7 @@ type MeDetailed = UserDetailed & {
noCrawle: boolean;
receiveAnnouncementEmail: boolean;
usePasswordLessLogin: boolean;
unreadAnnouncements: Announcement[];
[other: string]: any;
};