UNPKG

@lucasferreiralsf/angular-frontend-library

Version:

This is a set of custom angular components to easy the development of any Subway frontend project.

12 lines (11 loc) 562 B
import { OnInit } from '@angular/core'; import { DataTableInputDataInterface, DataTableActionsInterface, DataTableColumnNamesInterface, DataTableTopActionButtonInterface } from '../data-table/data-table.component'; export declare class ViewContainerComponent implements OnInit { tableSelectColumn: boolean; columnNames: DataTableColumnNamesInterface[]; actions: DataTableActionsInterface[]; inputData: DataTableInputDataInterface[]; topActionButtons: DataTableTopActionButtonInterface[]; constructor(); ngOnInit(): void; }