9 lines
147 B
TypeScript
9 lines
147 B
TypeScript
|
|
import UserData from '../../common/UserData';
|
||
|
|
|
||
|
|
interface ChatSocketData {
|
||
|
|
chat_id: string;
|
||
|
|
userData: UserData;
|
||
|
|
}
|
||
|
|
|
||
|
|
export default ChatSocketData;
|