面试题答案
一键面试// 服务器端发送的数据结构类型
type ServerToClientData = {
message: string;
timestamp: number;
};
// 客户端发送的数据结构类型
type ClientToServerData = {
action: 'connect' | 'disconnect';
data: any;
};
// 服务器端发送的数据结构类型
type ServerToClientData = {
message: string;
timestamp: number;
};
// 客户端发送的数据结构类型
type ClientToServerData = {
action: 'connect' | 'disconnect';
data: any;
};