diff options
| author | Acid Chicken (硫酸鶏) <root@acid-chicken.com> | 2019-02-04 18:27:45 +0900 |
|---|---|---|
| committer | Aya Morisawa <AyaMorisawa4869@gmail.com> | 2019-02-04 18:27:45 +0900 |
| commit | 68ee9a008e987b9a7dc1f9cf1fc010f9b9ed0f42 (patch) | |
| tree | ae7a24e70a21c3dfae4a4e3a92d63050b0ee1eca /src/models/note.ts | |
| parent | Fix fusion (diff) | |
| download | sharkey-68ee9a008e987b9a7dc1f9cf1fc010f9b9ed0f42.tar.gz sharkey-68ee9a008e987b9a7dc1f9cf1fc010f9b9ed0f42.tar.bz2 sharkey-68ee9a008e987b9a7dc1f9cf1fc010f9b9ed0f42.zip | |
Resolve #4121 (#4122)
* Resolve #4121
* Update tslint.json
Diffstat (limited to 'src/models/note.ts')
| -rw-r--r-- | src/models/note.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/models/note.ts b/src/models/note.ts index b3d5ed6977..ce886f51c9 100644 --- a/src/models/note.ts +++ b/src/models/note.ts @@ -52,11 +52,11 @@ export type INote = { repliesCount: number; reactionCounts: any; mentions: mongo.ObjectID[]; - mentionedRemoteUsers: Array<{ + mentionedRemoteUsers: { uri: string; username: string; host: string; - }>; + }[]; /** * public ... 公開 |