src/app/_models/mappings.ts
Action object interface
Properties |
| action |
action:
|
Type : string
|
| approval |
approval:
|
Type : boolean
|
| id |
id:
|
Type : number
|
| role |
role:
|
Type : string
|
| user |
user:
|
Type : string
|
interface Action {
id: number;
user: string;
role: string;
action: string;
approval: boolean;
}
/** Area name object interface */
interface AreaName {
name: string;
locations: Array<string>;
}
/** Area type object interface */
interface AreaType {
name: string;
area: Array<string>;
}
/** Category object interface */
interface Category {
name: string;
products: Array<string>;
}
/** @exports */
export { Action, AreaName, AreaType, Category };