52 lines
1.3 KiB
Markdown
52 lines
1.3 KiB
Markdown
|
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
||
|
|
||
|
[Home](./index.md) > [calckey-js](./calckey-js.md) > [entities](./calckey-js.entities.md) > [Note](./calckey-js.entities.note.md)
|
||
|
|
||
|
## entities.Note type
|
||
|
|
||
|
**Signature:**
|
||
|
|
||
|
```typescript
|
||
|
export declare type Note = {
|
||
|
id: ID;
|
||
|
createdAt: DateString;
|
||
|
text: string | null;
|
||
|
cw: string | null;
|
||
|
user: User;
|
||
|
userId: User["id"];
|
||
|
reply?: Note;
|
||
|
replyId: Note["id"];
|
||
|
renote?: Note;
|
||
|
renoteId: Note["id"];
|
||
|
files: DriveFile[];
|
||
|
fileIds: DriveFile["id"][];
|
||
|
visibility: "public" | "home" | "followers" | "specified";
|
||
|
visibleUserIds?: User["id"][];
|
||
|
localOnly?: boolean;
|
||
|
channel?: Channel["id"];
|
||
|
myReaction?: string;
|
||
|
reactions: Record<string, number>;
|
||
|
renoteCount: number;
|
||
|
repliesCount: number;
|
||
|
poll?: {
|
||
|
expiresAt: DateString | null;
|
||
|
multiple: boolean;
|
||
|
choices: {
|
||
|
isVoted: boolean;
|
||
|
text: string;
|
||
|
votes: number;
|
||
|
}[];
|
||
|
};
|
||
|
emojis: {
|
||
|
name: string;
|
||
|
url: string;
|
||
|
}[];
|
||
|
uri?: string;
|
||
|
url?: string;
|
||
|
updatedAt?: DateString;
|
||
|
isHidden?: boolean;
|
||
|
};
|
||
|
```
|
||
|
**References:** [ID](./calckey-js.entities.id.md)<!-- -->, [DateString](./calckey-js.entities.datestring.md)<!-- -->, [User](./calckey-js.entities.user.md)<!-- -->, [Note](./calckey-js.entities.note.md)<!-- -->, [DriveFile](./calckey-js.entities.drivefile.md)<!-- -->, [Channel](./calckey-js.entities.channel.md)
|
||
|
|