Update misskey-js.api.md

This commit is contained in:
Kagami Sascha Rosylight 2023-03-16 21:18:08 +01:00
parent 6e6a5222cd
commit 634ce0fa49

View file

@ -12,7 +12,7 @@ export type Acct = {
host: string | null; host: string | null;
}; };
// Warning: (ae-forgotten-export) The symbol "TODO" needs to be exported by the entry point index.d.ts // Warning: (ae-forgotten-export) The symbol "TODO_2" needs to be exported by the entry point index.d.ts
// //
// @public (undocumented) // @public (undocumented)
type Ad = TODO_2; type Ad = TODO_2;
@ -2247,17 +2247,17 @@ type FollowRequest = {
// @public (undocumented) // @public (undocumented)
type GalleryPost = { type GalleryPost = {
id: ID; id: ID;
createdAt: DateString; createdAt: DateString;
updatedAt: DateString; updatedAt: DateString;
userId: User['id']; userId: User['id'];
user: User; user: User;
title: string; title: string;
description: string | null; description: string | null;
fileIds: DriveFile['id'][]; fileIds: DriveFile['id'][];
files: DriveFile[]; files: DriveFile[];
isSensitive: boolean; isSensitive: boolean;
likedCount: number; likedCount: number;
isLiked?: boolean; isLiked?: boolean;
}; };
// @public (undocumented) // @public (undocumented)