15 lines
328 B
TypeScript
15 lines
328 B
TypeScript
![]() |
import path from "path";
|
||
|
import { TypedEvent } from "../helper/typed_event";
|
||
|
import { StackService } from "../services/stack_service";
|
||
|
// TODO(IDONTSUDO): up to do
|
||
|
|
||
|
class SocketController<T>{
|
||
|
emitter:TypedEvent<T>;
|
||
|
constructor(emitter:TypedEvent<T>, ){
|
||
|
this.emitter = emitter
|
||
|
}
|
||
|
call = () =>{
|
||
|
|
||
|
}
|
||
|
}
|
||
|
|