import {Ice} from 'ice'; declare module './Ice.ns' { namespace Ice { /** * The identity of an Ice object. In a proxy, an empty {@link Identity#name} denotes a nil * proxy. An identity with an empty {@link Identity#name} and a non-empty {@link Identity#category} * is illegal. You cannot add a servant with an empty name to the Active Servant Map. * * @see ServantLocator * @see ObjectAdapter#addServantLocator */ class Identity implements Ice.Struct { constructor(name?: string, category?: string); /** * The name of the Ice object. */ name: string; /** * The Ice object category. */ category: string; clone(): this; equals(other: this): boolean; hashCode(): number; } type ObjectDict = Ice.HashMap; const ObjectDict: { new (): ObjectDict; }; /** * A sequence of identities. */ type IdentitySeq = Array; } } export {Ice} from './Ice.ns';