UNPKG

@hxui/angular

Version:

This README includes the steps that are necessary to import the HxUi-angular into a project or to contribute with development.

18 lines (17 loc) 549 B
import { OnInit } from '@angular/core'; import { IEmptyStateAction } from './empty-state-action.interface'; import { EmptyStateConfig } from './empty-state.config'; export declare class EmptyStateComponent implements OnInit { private config; icon: string; msg: string; actions: IEmptyStateAction[]; constructor(config: EmptyStateConfig); ngOnInit(): void; /** * Calls the parsed callback with optional arguments * @param event * @param cb */ private executeCallback(event, cb); }