summaryrefslogtreecommitdiff
path: root/js/src/Ice/AsyncResultBase.d.ts
blob: 93b16c2139927ed531bc5fdb33adb289fdf7b9da (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//
// Copyright (c) ZeroC, Inc. All rights reserved.
//

declare module "ice"
{
    namespace Ice
    {
        class AsyncResultBase<T> extends Promise<T>
        {
            constructor(communicator:Communicator, op:string, connection:Connection, proxy:ObjectPrx, adapter:ObjectAdapter);
            readonly communicator:Communicator;
            readonly connection:Connection;
            readonly proxy:ObjectPrx;
            readonly adapter:ObjectAdapter;
            readonly operation:string;
        }
    }
}