Skip to content

Instantly share code, notes, and snippets.

@Pieeer1
Pieeer1 / ExpoVoipPushToken.types.ts
Last active October 8, 2025 19:41
Expo Modules Voip Push Token
export interface VoipToken {
voipToken: string;
}
export type ExpoVoipPushTokenModuleEvents = {
onRegistration: (params: VoipToken) => void;
notification: (params: { payload: Record<string, any> }) => void;
onCallAccepted: (params: { callUUID: string }) => void;
onCallEnded: (params: { callUUID: string }) => void;
};