File

src/models/mirror.ts

Description

The Mirror interface

Properties

id
id: void
Type : void

The Id of the Mirror

image
image: void
Type : void

The Path to the Image used to display on administration operations.

name
name: void
Type : void

The Name of the Mirror used to display on administration operations.

user
user: void
Type : void

The User to which the Mirror belongs to

widgets
widgets: Array
Type : Array

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>;
}

results matching ""

    No results matching ""