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

This commit is contained in:
Shubham Parihar
2021-09-17 19:51:08 +05:30
committed by GitHub
parent 4bbe1eaa86
commit 2aee879600
4 changed files with 16 additions and 0 deletions

View File

@@ -833,6 +833,10 @@ export interface APIAttachment {
* Width of file (if image)
*/
width?: number | null;
/**
* Whether this attachment is ephemeral
*/
ephemeral?: boolean;
}
/**

View File

@@ -962,6 +962,10 @@ export interface APIAttachment {
* Width of file (if image)
*/
width?: number | null;
/**
* Whether this attachment is ephemeral
*/
ephemeral?: boolean;
}
/**

View File

@@ -833,6 +833,10 @@ export interface APIAttachment {
* Width of file (if image)
*/
width?: number | null;
/**
* Whether this attachment is ephemeral
*/
ephemeral?: boolean;
}
/**

View File

@@ -962,6 +962,10 @@ export interface APIAttachment {
* Width of file (if image)
*/
width?: number | null;
/**
* Whether this attachment is ephemeral
*/
ephemeral?: boolean;
}
/**