ref(TS) Convert some components to TS (#13129)

This commit is contained in:
Robert Pintilii
2023-03-30 11:27:53 +03:00
committed by GitHub
parent 570ae81a37
commit 206a4afd76
74 changed files with 762 additions and 1040 deletions

View File

@@ -5,7 +5,7 @@ import AbstractButton, { IProps } from './AbstractButton';
/**
* An abstract implementation of a button for toggling video mute.
*/
export default class AbstractVideoMuteButton<P extends IProps, S>
export default class AbstractVideoMuteButton<P extends IProps, S=any>
extends AbstractButton<P, S> {
icon = IconVideo;