Update misskey-js.api.md

This commit is contained in:
syuilo 2021-10-17 17:52:24 +09:00
parent 510a1408a2
commit 80ef07222d
1 changed files with 6 additions and 0 deletions

View File

@ -2192,8 +2192,12 @@ type Note = {
files: DriveFile[]; files: DriveFile[];
fileIds: DriveFile['id'][]; fileIds: DriveFile['id'][];
visibility: 'public' | 'home' | 'followers' | 'specified'; visibility: 'public' | 'home' | 'followers' | 'specified';
visibleUserIds?: User['id'][];
localOnly?: boolean;
myReaction?: string; myReaction?: string;
reactions: Record<string, number>; reactions: Record<string, number>;
renoteCount: number;
repliesCount: number;
poll?: { poll?: {
expiresAt: DateString | null; expiresAt: DateString | null;
multiple: boolean; multiple: boolean;
@ -2207,6 +2211,8 @@ type Note = {
name: string; name: string;
url: string; url: string;
}[]; }[];
uri?: string;
url?: string;
}; };
// @public (undocumented) // @public (undocumented)