src/app/shared/widgets/portal/modules/module.ts
Resource
Properties |
_actions |
_actions:
|
Type : literal type
|
Optional |
active |
active:
|
Type : boolean
|
custom |
custom:
|
Type : boolean
|
description |
description:
|
Type : string
|
icon |
icon:
|
Type : string
|
iconclass |
iconclass:
|
Type : string
|
id |
id:
|
Type : string
|
image |
image:
|
Type : string
|
links |
links:
|
Type : ActionNavigation[]
|
Optional |
linkType |
linkType:
|
Type : string
|
title |
title:
|
Type : string
|
import { ActionNavigation, Resource } from "../../../components/hal/hal";
export interface Module extends Resource {
id: string;
icon: string;
iconclass: string;
description: string;
image: string;
title: string;
active: boolean;
custom: boolean;
links?: ActionNavigation[];
linkType: string;
_actions?: {
links: ActionNavigation[];
};
}