8 lines
239 B
TypeScript
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 };
|