Skip to content

Commit

Permalink
linting
Browse files Browse the repository at this point in the history
  • Loading branch information
gekkedev authored Jun 12, 2024
1 parent b48e8fc commit 6ce0e2c
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions src/api/model/incoming-call.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,18 +17,18 @@

export interface IncomingCall {
/** alphanumeric ID of the call, can e.g. usable for hanging up */
id: string,
id: string;
/** ID of the caller, can be used to message them directly */
peerJid: string,
peerJid: string;
/** Epoch timestamp (seconds) */
offerTime: number,
isVideo: boolean,
isGroup: boolean,
groupJid: string | null,
canHandleLocally: boolean,
outgoing: boolean,
isSilenced: boolean,
offerReceivedWhileOffline: boolean,
webClientShouldHandle: boolean,
offerTime: number;
isVideo: boolean;
isGroup: boolean;
groupJid: string | null;
canHandleLocally: boolean;
outgoing: boolean;
isSilenced: boolean;
offerReceivedWhileOffline: boolean;
webClientShouldHandle: boolean;
participants: any[]
}

0 comments on commit 6ce0e2c

Please sign in to comment.