Fully renamed socket to ttp

This commit is contained in:
Alois 2026-04-03 00:38:35 +02:00
commit 76ca664298
13 changed files with 55 additions and 42 deletions

View file

@ -1,8 +1,8 @@
import { z } from "zod";
import { socket } from "@tensamin/shared/data";
import { ttp } from "@tensamin/shared/data";
export type RawMessages = z.infer<
typeof socket.messages_get.response
typeof ttp.messages_get.response
>["messages"];
export type RawMessage = RawMessages[number];