import {Component, Input, Output} from '../decorators' @Component({ selector: 'actionableEmptyState', template: require('./actionable-empty-state.html'), transclude: true }) export default class ActionableEmptyStateController { @Input('@') header!: string @Input('@') subheader!: string @Input('@') bulletOne!: string @Input('@') bulletTwo!: string @Input('@') bulletThree!: string @Input('@') buttonText!: string @Output('&') buttonAction!: () => void protected runButtonAction() { this.buttonAction() } }