mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2026-05-20 02:27:47 +00:00
chore(lint) tame the (uppdated) linter
This commit is contained in:
committed by
Saúl Ibarra Corretgé
parent
0aba61d5c6
commit
162a67fe8b
@@ -21,7 +21,7 @@ type Props = BaseProps & {
|
||||
}
|
||||
|
||||
/**
|
||||
* Abstract dialog to submit something. E.g. a confirmation or a form.
|
||||
* Abstract dialog to submit something. E.g. A confirmation or a form.
|
||||
*/
|
||||
class BaseSubmitDialog<P: Props, S: *> extends BaseDialog<P, S> {
|
||||
/**
|
||||
@@ -84,16 +84,16 @@ class BaseSubmitDialog<P: Props, S: *> extends BaseDialog<P, S> {
|
||||
|
||||
_onSubmit: () => boolean;
|
||||
|
||||
_renderHTML: string => Object | string
|
||||
_renderHTML: string => Object | string;
|
||||
|
||||
/**
|
||||
/** .
|
||||
* Renders the actual content of the dialog defining what is about to be
|
||||
* submitted. E.g. a simple confirmation (text, properly wrapped) or a
|
||||
* submitted. E.g. A simple confirmation (text, properly wrapped) or a
|
||||
* complex form.
|
||||
*
|
||||
* @returns {Object}
|
||||
*/
|
||||
_renderSubmittable: () => Object
|
||||
_renderSubmittable: () => Object;
|
||||
}
|
||||
|
||||
export default BaseSubmitDialog;
|
||||
|
||||
Reference in New Issue
Block a user