mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2025-12-30 11:22:31 +00:00
ref(eslint) Use new TypeScript ESlint config (#12143)
Use new TS config from @jitsi/eslint Fix all lint errors
This commit is contained in:
@@ -26,38 +26,38 @@ export type Props = AbstractDialogTabProps & WithTranslation & {
|
||||
/**
|
||||
* Whether or not server-side authentication is available.
|
||||
*/
|
||||
authEnabled: boolean,
|
||||
authEnabled: boolean;
|
||||
|
||||
/**
|
||||
* The name of the currently (server-side) authenticated user.
|
||||
*/
|
||||
authLogin: string,
|
||||
authLogin: string;
|
||||
|
||||
/**
|
||||
* The display name to display for the local participant.
|
||||
*/
|
||||
displayName: string,
|
||||
displayName: string;
|
||||
|
||||
/**
|
||||
* The email to display for the local participant.
|
||||
*/
|
||||
email: string,
|
||||
email: string;
|
||||
|
||||
/**
|
||||
* Whether to hide the email input in the profile settings.
|
||||
*/
|
||||
hideEmailInSettings?: boolean,
|
||||
hideEmailInSettings?: boolean;
|
||||
|
||||
/**
|
||||
* If the display name is read only.
|
||||
*/
|
||||
readOnlyName: boolean,
|
||||
readOnlyName: boolean;
|
||||
|
||||
/**
|
||||
* Invoked to obtain translated strings.
|
||||
*/
|
||||
t: Function
|
||||
}
|
||||
t: Function;
|
||||
};
|
||||
|
||||
/**
|
||||
* React {@code Component} for modifying the local user's profile.
|
||||
|
||||
Reference in New Issue
Block a user