summaryrefslogtreecommitdiff
path: root/js/src/Ice/IdentityUtil.d.ts
blob: 50a6000248df569b6f13c9ac56f88aeeb17ccc3d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//
// Copyright (c) ZeroC, Inc. All rights reserved.
//

declare module "ice"
{
    namespace Ice
    {
        function stringToIdentity(s:string):Identity;
        function identityToString(ident:Identity, toStringMode?:ToStringMode):string;
        function proxyIdentityCompare(lhs:ObjectPrx, rhs:ObjectPrx):number;
        function proxyIdentityAndFacetCompare(lhs:ObjectPrx, rhs:ObjectPrx):number;
    }
}