9 lines
96 B
TypeScript
9 lines
96 B
TypeScript
|
|
/**
|
||
|
|
* Shared SIP types.
|
||
|
|
*/
|
||
|
|
|
||
|
|
export interface IEndpoint {
|
||
|
|
address: string;
|
||
|
|
port: number;
|
||
|
|
}
|