my-chat-room/libs/api-interfaces/src/lib/api-interfaces.ts

7 lines
105 B
TypeScript

export interface Message {
creationDate: string;
message: string;
user: string;
color: string;
}