@@ -104,7 +104,7 @@ export abstract class WidgetDriver {
104104 eventType : string ,
105105 content : unknown ,
106106 stateKey : string | null = null ,
107- roomId : string | null = null
107+ roomId : string | null = null ,
108108 ) : Promise < ISendEventDetails > {
109109 return Promise . reject ( new Error ( "Failed to override function" ) ) ;
110110 }
@@ -126,11 +126,11 @@ export abstract class WidgetDriver {
126126 * @throws Rejected when the event could not be sent.
127127 */
128128 public sendStickyEvent (
129- stickyDurationMs : number ,
129+ stickyDurationMs : number ,
130130 eventType : string ,
131131 content : unknown ,
132132 stateKey : string | null = null ,
133- roomId : string | null = null
133+ roomId : string | null = null ,
134134 ) : Promise < ISendEventDetails > {
135135 throw new Error ( "Method not implemented." ) ;
136136 }
@@ -188,11 +188,11 @@ export abstract class WidgetDriver {
188188 public sendDelayedStickyEvent (
189189 delay : number | null ,
190190 parentDelayId : string | null ,
191- stickyDurationMs : number ,
191+ stickyDurationMs : number ,
192192 eventType : string ,
193193 content : unknown ,
194194 stateKey : string | null = null ,
195- roomId : string | null = null
195+ roomId : string | null = null ,
196196 ) : Promise < ISendEventDetails > {
197197 throw new Error ( "Method not implemented." ) ;
198198 }
0 commit comments