@illgrenoble/ngx-remote-desktop
Version:
ngx-remote-desktop is an Angular2+ module for connecting to a remote desktop using the guacamole protocol
19 lines (18 loc) • 385 B
TypeScript
/**
* Message component for showing error or success messages for when the connection
* state changes
*/
export declare class MessageComponent {
/**
* Title of the message to display
*/
title: string;
/**
* Content of the message to display
*/
message: string;
/**
* Message type. Can be 'success' or 'error'
*/
type: string;
}