You've already forked matrix-js-sdk
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:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user