We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9933e51 + 5d4ee10 commit 2a1db84Copy full SHA for 2a1db84
1 file changed
src/entities/Status.ts
@@ -1,6 +1,7 @@
1
import { Account } from './Account';
2
import { Application } from './Application';
3
import { Attachment } from './Attachment';
4
+import { Card } from './Card';
5
import { Emoji } from './Emoji';
6
import { Mention } from './Mention';
7
import { Tag } from './Tag';
@@ -27,6 +28,9 @@ export interface Status {
27
28
/** `null` or the reblogged Status */
29
reblog?: Status | null;
30
31
+ /** Embeded card */
32
+ card?: Card;
33
+
34
/** Body of the status; this will contain HTML (remote HTML already sanitized) */
35
content: string;
36
0 commit comments