@nebular/theme
Version:
@nebular/theme
26 lines (25 loc) • 482 B
TypeScript
/**
* @license
* Copyright Akveo. All Rights Reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*/
/**
* Chat message component.
*/
export declare class NbChatMessageTextComponent {
/**
* Message sender
* @type {string}
*/
sender: string;
/**
* Message sender
* @type {string}
*/
message: string;
/**
* Message send date
* @type {Date}
*/
date: Date;
}