| 6 | EventEmitter_EE<_EE> & _EE |
| 7 | |
| 8 | export interface SharedObjectClient<T, _EE extends Dict<any[]>> { |
| 9 | proxy: T |
| 10 | emitter: EventEmitter_<SharedObjectClientEvents<_EE>> |
| 11 | disconnect: Unlisten |
| 12 | } |
| 13 | |
| 14 | export class SharedObject<T extends Dict<any>, _EE extends Dict<any[]>> { |
| 15 | private _obj: T |
nothing calls this directly
no outgoing calls
no test coverage detected