UNPKG

sipgateio

Version:

The official Node.js library for sipgate.io

12 lines (11 loc) 228 B
export interface VoicemailsModule { getVoicemails(): Promise<Voicemail[]>; } export interface Voicemail { id: string; alias: string; belongsToEndpoint: { extension: string; type: string; }; }