@@ -348,6 +348,20 @@ export namespace Components {
348
348
*/
349
349
"type" : 'join' | 'leave' | 'call' | 'missed-call' | 'boost' | 'edit' | 'thread' | 'alert' | 'error' ;
350
350
}
351
+ interface DiscordTenorVideo {
352
+ /**
353
+ * The height of the video in pixels
354
+ */
355
+ "height" : number ;
356
+ /**
357
+ * The URL for the video
358
+ */
359
+ "url" : string ;
360
+ /**
361
+ * The width of the video in pixels
362
+ */
363
+ "width" : number ;
364
+ }
351
365
}
352
366
declare global {
353
367
interface HTMLDiscordActionRowElement extends Components . DiscordActionRow , HTMLStencilElement {
@@ -446,6 +460,12 @@ declare global {
446
460
prototype : HTMLDiscordSystemMessageElement ;
447
461
new ( ) : HTMLDiscordSystemMessageElement ;
448
462
} ;
463
+ interface HTMLDiscordTenorVideoElement extends Components . DiscordTenorVideo , HTMLStencilElement {
464
+ }
465
+ var HTMLDiscordTenorVideoElement : {
466
+ prototype : HTMLDiscordTenorVideoElement ;
467
+ new ( ) : HTMLDiscordTenorVideoElement ;
468
+ } ;
449
469
interface HTMLElementTagNameMap {
450
470
"discord-action-row" : HTMLDiscordActionRowElement ;
451
471
"discord-attachment" : HTMLDiscordAttachmentElement ;
@@ -463,6 +483,7 @@ declare global {
463
483
"discord-reactions" : HTMLDiscordReactionsElement ;
464
484
"discord-reply" : HTMLDiscordReplyElement ;
465
485
"discord-system-message" : HTMLDiscordSystemMessageElement ;
486
+ "discord-tenor-video" : HTMLDiscordTenorVideoElement ;
466
487
}
467
488
}
468
489
declare namespace LocalJSX {
@@ -807,6 +828,20 @@ declare namespace LocalJSX {
807
828
*/
808
829
"type" ?: 'join' | 'leave' | 'call' | 'missed-call' | 'boost' | 'edit' | 'thread' | 'alert' | 'error' ;
809
830
}
831
+ interface DiscordTenorVideo {
832
+ /**
833
+ * The height of the video in pixels
834
+ */
835
+ "height" ?: number ;
836
+ /**
837
+ * The URL for the video
838
+ */
839
+ "url" ?: string ;
840
+ /**
841
+ * The width of the video in pixels
842
+ */
843
+ "width" ?: number ;
844
+ }
810
845
interface IntrinsicElements {
811
846
"discord-action-row" : DiscordActionRow ;
812
847
"discord-attachment" : DiscordAttachment ;
@@ -824,6 +859,7 @@ declare namespace LocalJSX {
824
859
"discord-reactions" : DiscordReactions ;
825
860
"discord-reply" : DiscordReply ;
826
861
"discord-system-message" : DiscordSystemMessage ;
862
+ "discord-tenor-video" : DiscordTenorVideo ;
827
863
}
828
864
}
829
865
export { LocalJSX as JSX } ;
@@ -846,6 +882,7 @@ declare module "@stencil/core" {
846
882
"discord-reactions" : LocalJSX . DiscordReactions & JSXBase . HTMLAttributes < HTMLDiscordReactionsElement > ;
847
883
"discord-reply" : LocalJSX . DiscordReply & JSXBase . HTMLAttributes < HTMLDiscordReplyElement > ;
848
884
"discord-system-message" : LocalJSX . DiscordSystemMessage & JSXBase . HTMLAttributes < HTMLDiscordSystemMessageElement > ;
885
+ "discord-tenor-video" : LocalJSX . DiscordTenorVideo & JSXBase . HTMLAttributes < HTMLDiscordTenorVideoElement > ;
849
886
}
850
887
}
851
888
}
0 commit comments