Type alias INote

INote: {
    createdAt: string;
    cw: string | null;
    fileIds: string[];
    files: IDriveFile[];
    id: string;
    localOnly: boolean;
    reactionAcceptance: ReactionAcceptance;
    reactionEmojis: {
        [key: string]: string;
    };
    reactions: {
        [key: string]: number;
    };
    renoteCount: number;
    renoteId: string | null;
    repliesCount: number;
    replyId: string | null;
    text: string | null;
    user: IUserLite;
    userId: string;
    visibility: NoteVisibility;
}

Type declaration

  • createdAt: string
  • cw: string | null
  • fileIds: string[]
  • files: IDriveFile[]
  • id: string
  • localOnly: boolean
  • reactionAcceptance: ReactionAcceptance
  • reactionEmojis: {
        [key: string]: string;
    }
    • [key: string]: string
  • reactions: {
        [key: string]: number;
    }
    • [key: string]: number
  • renoteCount: number
  • renoteId: string | null
  • repliesCount: number
  • replyId: string | null
  • text: string | null
  • user: IUserLite
  • userId: string
  • visibility: NoteVisibility

Generated using TypeDoc