@nebular/theme
Version:
@nebular/theme
49 lines (48 loc) • 957 B
TypeScript
/**
* @license
* Copyright Akveo. All Rights Reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*/
import { NbChatOptions } from './chat.options';
/**
* Chat message component.
*/
export declare class NbChatMessageMapComponent {
/**
* Message sender
* @type {string}
*/
message: string;
/**
* Message sender
* @type {string}
*/
sender: string;
/**
* Message send date
* @type {Date}
*/
date: Date;
/**
* Message send date format, default 'shortTime'
* @type {string}
*/
dateFormat: string;
/**
* Map latitude
* @type {number}
*/
latitude: number;
/**
* Map longitude
* @type {number}
*/
longitude: number;
get file(): {
url: string;
type: string;
icon: string;
};
mapKey: string;
constructor(options: NbChatOptions);
}