hazelcast-client
Version:
Hazelcast - open source In-Memory Data Grid - client for NodeJS
14 lines (13 loc) • 343 B
TypeScript
import Address = require('../Address');
export declare class Member {
address: Address;
uuid: string;
isLiteMember: boolean;
attributes: {
[id: string]: string;
};
constructor(address: Address, uuid: string, isLiteMember?: boolean, attributes?: {
[id: string]: string;
});
toString(): string;
}