coldbydefault-portfolio
    Preparing search index...

    Interface ChatInputProps

    interface ChatInputProps {
        disabled: boolean;
        isLoading: boolean;
        maxLength: number;
        onSendMessage: (message: string) => void;
        placeholder?: string;
    }
    Index

    Properties

    disabled: boolean
    isLoading: boolean
    maxLength: number
    onSendMessage: (message: string) => void
    placeholder?: string