ChatOption - Interface representing options for a chat.

interface ChatOption {
    delay?: number;
    showDateTime?: boolean;
}

Properties

delay?: number

The delay in milliseconds before displaying a message (optional).

showDateTime?: boolean

Whether to display date and time for each message (optional).