This commit is contained in:
syuilo
2018-04-28 17:25:56 +09:00
parent 985a105930
commit 47ce59d555
5 changed files with 244 additions and 20 deletions

View File

@ -46,7 +46,16 @@ export type INote = {
repliesCount: number;
reactionCounts: any;
mentions: mongo.ObjectID[];
visibility: 'public' | 'unlisted' | 'private' | 'direct';
/**
* public ... 公開
* home ... ホームタイムライン(ユーザーページのタイムライン含む)のみに流す
* followers ... フォロワーのみ
* mentioned ... 言及したユーザーのみ
* private ... 自分のみ
*/
visibility: 'public' | 'home' | 'followers' | 'mentioned' | 'private';
geo: {
coordinates: number[];
altitude: number;