Skip to content
Snippets Groups Projects
Commit 510a1408 authored by syuilo's avatar syuilo
Browse files

update Note type

parent 34afa60a
No related branches found
No related tags found
No related merge requests found
# 0.0.8(wip)
- add type definition for `messagingMessage` event to main stream channel
- Update Note type
# 0.0.7
- Notificationsの型を修正
......
......@@ -86,8 +86,12 @@ export 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;
......@@ -101,6 +105,8 @@ export type Note = {
name: string;
url: string;
}[];
uri?: string;
url?: string;
};
export type NoteReaction = {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment