Skip to content

Commit

Permalink
chore: human socket manger에서 일단 any 타입으로 적용 (타입 에러 점검 필요)
Browse files Browse the repository at this point in the history
  • Loading branch information
HeoJiye committed Feb 23, 2024
1 parent 2e31d28 commit e0f1b48
Showing 1 changed file with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
import { SocketManager } from './SocketManager';

export class HumanSocketManager extends SocketManager<
HumanSocketEvent['ServerToClientEvent'],
HumanSocketEvent['ClientToServerEvent']
> {
// export class HumanSocketManager extends SocketManager<
// HumanSocketEvent['ServerToClientEvent'],
// HumanSocketEvent['ClientToServerEvent']
// > {

export class HumanSocketManager extends SocketManager<any, any> {
static instance: HumanSocketManager | null = null;

private constructor() {
Expand Down

0 comments on commit e0f1b48

Please sign in to comment.