You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

chat.ts 264B

1234567891011121314151617
  1. import { Persona } from "./persona";
  2. export interface ChatItem {
  3. self:boolean,
  4. text:string,
  5. time:string,
  6. date:string,
  7. read:boolean,
  8. }
  9. export interface Chat {
  10. id: number;
  11. name: string;
  12. persona: Persona
  13. chatList: ChatItem[]
  14. };