mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
11 lines
295 B
TypeScript
11 lines
295 B
TypeScript
import { EventEmitter } from "events";
|
|
import { SCBrokerClient } from "sc-broker";
|
|
import { mapperFunction } from ".";
|
|
|
|
export class ClientCluster extends EventEmitter {
|
|
constructor(clients: SCBrokerClient[]);
|
|
|
|
setMapper(mapper: mapperFunction): void;
|
|
getMapper(): mapperFunction;
|
|
}
|