Files
ColdBreeze-chat-web/src/types/common.ts
T
2026-07-04 07:15:55 +08:00

8 lines
239 B
TypeScript

export interface EntityId {
id: number;
}
export type ChatContext = "dm" | "channel";
export type Theme = "auto" | "dark" | "light";
export type AuthType = "register" | "login";
export type IPData = { error?: boolean; country: string };