mirror of
https://github.com/sqlchat/sqlchat.git
synced 2025-08-01 09:43:12 +08:00
7 lines
86 B
TypeScript
7 lines
86 B
TypeScript
import { Id } from "./common";
|
|
|
|
export interface Chat {
|
|
id: string;
|
|
userId: Id;
|
|
}
|