diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2021-10-17 17:52:24 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2021-10-17 17:52:24 +0900 |
| commit | 80ef07222d0c96c747477bcfcfb670b0fc6552c2 (patch) | |
| tree | 0a92219b883c26799fd63997cb4d300598b935d6 | |
| parent | update Note type (diff) | |
| download | misskey-80ef07222d0c96c747477bcfcfb670b0fc6552c2.tar.gz misskey-80ef07222d0c96c747477bcfcfb670b0fc6552c2.tar.bz2 misskey-80ef07222d0c96c747477bcfcfb670b0fc6552c2.zip | |
Update misskey-js.api.md
| -rw-r--r-- | etc/misskey-js.api.md | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/etc/misskey-js.api.md b/etc/misskey-js.api.md index 5f76c452ae..08db7d3490 100644 --- a/etc/misskey-js.api.md +++ b/etc/misskey-js.api.md @@ -2192,8 +2192,12 @@ type Note = { files: DriveFile[]; fileIds: DriveFile['id'][]; visibility: 'public' | 'home' | 'followers' | 'specified'; + visibleUserIds?: User['id'][]; + localOnly?: boolean; myReaction?: string; reactions: Record<string, number>; + renoteCount: number; + repliesCount: number; poll?: { expiresAt: DateString | null; multiple: boolean; @@ -2207,6 +2211,8 @@ type Note = { name: string; url: string; }[]; + uri?: string; + url?: string; }; // @public (undocumented) |