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