sparkletown/sparkle

View on GitHub
src/hooks/twilio/useIsLocalParticipant.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { LocalParticipant, RemoteParticipant } from "twilio-video";

export const useIsLocalParticipant = (
  participant: LocalParticipant | RemoteParticipant
): participant is LocalParticipant =>
  (participant as LocalParticipant).publishTrack !== undefined;