Skip to content

Commit 5d4ee10

Browse files
committed
Add card key for status entity
1 parent 9933e51 commit 5d4ee10

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

src/entities/Status.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import { Account } from './Account';
22
import { Application } from './Application';
33
import { Attachment } from './Attachment';
4+
import { Card } from './Card';
45
import { Emoji } from './Emoji';
56
import { Mention } from './Mention';
67
import { Tag } from './Tag';
@@ -27,6 +28,9 @@ export interface Status {
2728
/** `null` or the reblogged Status */
2829
reblog?: Status | null;
2930

31+
/** Embeded card */
32+
card?: Card;
33+
3034
/** Body of the status; this will contain HTML (remote HTML already sanitized) */
3135
content: string;
3236

0 commit comments

Comments
 (0)