File tree Expand file tree Collapse file tree 1 file changed +0
-29
lines changed Expand file tree Collapse file tree 1 file changed +0
-29
lines changed Original file line number Diff line number Diff line change @@ -77,32 +77,3 @@ enum TextType {
77
77
```
78
78
79
79
For unknown textType (might comes from the future version), the client must treat it as ` TextType.PlainText ` .
80
-
81
- ### Image
82
-
83
- To limit the length of the payload, this data type is not going to support inline binary image data.
84
-
85
- ``` typescript
86
- type TypedMessageImageTuple = [
87
- type : TypedMessageTypeEnum .Image
88
- metadata : object | null ,
89
- imageType : ImageType .PNG | ImageType .JPG | ImageType .WEBP ,
90
- src : UTF8String ,
91
- width : Int ,
92
- height : Int
93
- ] | [
94
- type : TypedMessageTypeEnum .Image
95
- metadata : object | null ,
96
- imageType : ImageType .SVG ,
97
- content : UTF8String ,
98
- width : Int ,
99
- height : Int
100
- ]
101
-
102
- enum ImageType {
103
- PNG = 0 ,
104
- JPG = 1 ,
105
- WEBP = 2 ,
106
- SVG = 3
107
- }
108
- ```
You can’t perform that action at this time.
0 commit comments