feat(APIAttachment): add ephemeral field (#199)

This commit is contained in:
Shubham Parihar
2021-09-17 17:21:08 +03:00
committed by GitHub
parent 4bbe1eaa86
commit 2aee879600
4 changed files with 16 additions and 0 deletions
+4
View File
@@ -833,6 +833,10 @@ export interface APIAttachment {
* Width of file (if image)
*/
width?: number | null;
/**
* Whether this attachment is ephemeral
*/
ephemeral?: boolean;
}
/**
+4
View File
@@ -962,6 +962,10 @@ export interface APIAttachment {
* Width of file (if image)
*/
width?: number | null;
/**
* Whether this attachment is ephemeral
*/
ephemeral?: boolean;
}
/**
+4
View File
@@ -833,6 +833,10 @@ export interface APIAttachment {
* Width of file (if image)
*/
width?: number | null;
/**
* Whether this attachment is ephemeral
*/
ephemeral?: boolean;
}
/**
+4
View File
@@ -962,6 +962,10 @@ export interface APIAttachment {
* Width of file (if image)
*/
width?: number | null;
/**
* Whether this attachment is ephemeral
*/
ephemeral?: boolean;
}
/**