theme-lib
Version:
This is a simple example Angular Library published to npm.
24 lines (23 loc) • 599 B
TypeScript
import { DomSanitizer, SafeStyle } from '@angular/platform-browser';
export declare class NbChatMessageComponent {
private domSanitizer;
readonly flyInOut: boolean;
replyValue: boolean;
readonly notReply: boolean;
avatarStyle: SafeStyle;
reply: boolean;
message: string;
sender: string;
date: Date;
files: {
url: string;
icon: string;
}[];
quote: string;
latitude: number;
longitude: number;
avatar: string;
type: string;
constructor(domSanitizer: DomSanitizer);
getInitials(): string;
}