projects/UILibrary/src/app/models/chat.settings.ts
Properties |
|
disableSendMessage |
disableSendMessage:
|
Type : boolean
|
Optional |
fallbackUserIcon |
fallbackUserIcon:
|
Type : URL
|
Optional |
maxHeight |
maxHeight:
|
Type : string
|
Optional |
sendImage |
sendImage:
|
Type : URL
|
export interface IChatSettings {
sendImage: URL;
maxHeight?: string;
fallbackUserIcon?: URL;
disableSendMessage?: boolean;
}