File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -241,28 +241,28 @@ export type TemplateImageColumn = {
241
241
} ;
242
242
243
243
export type Action < Label > =
244
- | TemplatePostbackAction & Label
245
- | TemplateMessageAction & Label
246
- | TemplateURIAction & Label
247
- | TemplateDatetimePickerAction & Label ;
244
+ | PostbackAction & Label
245
+ | MessageAction & Label
246
+ | URIAction & Label
247
+ | DatetimePickerAction & Label ;
248
248
249
- export type TemplatePostbackAction = {
249
+ export type PostbackAction = {
250
250
type : "postback" ;
251
251
data : string ;
252
252
text ?: string ;
253
253
} ;
254
254
255
- export type TemplateMessageAction = {
255
+ export type MessageAction = {
256
256
type : "message" ;
257
257
text : string ;
258
258
} ;
259
259
260
- export type TemplateURIAction = {
260
+ export type URIAction = {
261
261
type : "uri" ;
262
262
uri : string ;
263
263
} ;
264
264
265
- export type TemplateDatetimePickerAction = {
265
+ export type DatetimePickerAction = {
266
266
type : "datetimepicker" ;
267
267
data : string ;
268
268
mode : "date" | "time" | "datetime" ;
You can’t perform that action at this time.
0 commit comments