9 lines
No EOL
234 B
TypeScript
9 lines
No EOL
234 B
TypeScript
import type { MessageResponse, UserResponse } from "./interfaces";
|
|
|
|
export interface MessageProps {
|
|
message: MessageResponse,
|
|
replyMessage?: MessageResponse,
|
|
type: "normal" | "grouped",
|
|
editing?: boolean,
|
|
isMentioned?: boolean,
|
|
} |