mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2025-12-30 03:12:29 +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:
@@ -19,7 +19,7 @@ declare type ElementConfig = boolean | Object;
|
||||
/**
|
||||
* The type of the name-config pairs stored in {@code PersistenceRegistry}.
|
||||
*/
|
||||
declare type PersistencyConfigMap = { [name: string]: ElementConfig };
|
||||
declare type PersistencyConfigMap = { [name: string]: ElementConfig; };
|
||||
|
||||
/**
|
||||
* A registry to allow features to register their redux store subtree to be
|
||||
@@ -27,7 +27,7 @@ declare type PersistencyConfigMap = { [name: string]: ElementConfig };
|
||||
*/
|
||||
class PersistenceRegistry {
|
||||
_checksum = '';
|
||||
_defaultStates: { [name: string ]: Object|undefined } = {};
|
||||
_defaultStates: { [name: string ]: Object | undefined; } = {};
|
||||
_elements: PersistencyConfigMap = {};
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user