webstudio/server/src/core/controllers/socket_controller.ts

15 lines
328 B
TypeScript
Raw Normal View History

2023-10-26 17:44:54 +03:00
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 = () =>{
}
}