blob: 1231cc5780e60f5f223c802d91fe4b8423968f24 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
//
// Copyright (c) ZeroC, Inc. All rights reserved.
//
declare module "ice"
{
namespace Ice
{
class Address
{
constructor(host:string, port:number);
host:string;
port:number;
}
}
}
|