import {Ice} from 'ice'; declare module './Ice.ns' { namespace Ice { /** * A mapping from type IDs to Slice checksums. The dictionary * allows verification at run time that client and server * use matching Slice definitions. */ type SliceChecksumDict = Map; const SliceChecksumDict: { /** * A mapping from type IDs to Slice checksums. The dictionary * allows verification at run time that client and server * use matching Slice definitions. */ new (entries?: ReadonlyArray<[string, string]>): SliceChecksumDict; }; } } export {Ice} from './Ice.ns';