import { Component, Input } from '@angular/core'; import { AppManagerAction } from '@features/application-manager/application-manager.typing'; @Component({ selector: 'gc-app-actions-dropdown', templateUrl: './app-actions-dropdown.component.html', styleUrls: ['./app-actions-dropdown.component.scss'] }) export class AppActionsDropdownComponent { @Input() actions: AppManagerAction[]; }