1
0
mirror of https://github.com/matrix-org/matrix-js-sdk.git synced 2025-12-01 04:43:29 +03:00

Comply with new member-delimiter-style rule

Just `eslint --fix` with rule from
https://github.com/matrix-org/eslint-plugin-matrix-org/pull/9 in place
This commit is contained in:
David Baker
2021-07-01 23:28:18 +01:00
parent e3a00c2cb4
commit b2ad957d29
6 changed files with 24 additions and 24 deletions

View File

@@ -56,22 +56,22 @@ import { CallFeed } from './callFeed';
*/
interface CallOpts {
roomId?: string,
client?: any, // Fix when client is TSified
forceTURN?: boolean,
turnServers?: Array<TurnServer>,
roomId?: string;
client?: any; // Fix when client is TSified
forceTURN?: boolean;
turnServers?: Array<TurnServer>;
}
interface TurnServer {
urls: Array<string>,
username?: string,
password?: string,
ttl?: number,
urls: Array<string>;
username?: string;
password?: string;
ttl?: number;
}
interface AssertedIdentity {
id: string,
displayName: string,
id: string;
displayName: string;
}
export enum CallState {