src/models/mirror.ts
The Mirror interface
id |
id: |
Type : void
|
Defined in src/models/mirror.ts:17
|
The Id of the Mirror |
image |
image: |
Type : void
|
Defined in src/models/mirror.ts:29
|
The Path to the Image used to display on administration operations. |
name |
name: |
Type : void
|
Defined in src/models/mirror.ts:25
|
The Name of the Mirror used to display on administration operations. |
user |
user: |
Type : void
|
Defined in src/models/mirror.ts:21
|
The User to which the Mirror belongs to |
widgets |
widgets: |
Type : Array
|
Defined in src/models/mirror.ts:33
|
The Widgets to Display in the Mirror frontend |
import {Widget} from './widget';
/**
* The Mirror interface
*
* @interface Mirror
*/
export interface Mirror {
/**
* The Id of the Mirror
*/
id: string;
/**
* The User to which the Mirror belongs to
*/
user: string;
/**
* The Name of the Mirror used to display on administration operations.
*/
name: string;
/**
* The Path to the Image used to display on administration operations.
*/
image: string;
/**
* The Widgets to Display in the Mirror frontend
*/
widgets: Array<Widget>;
}