aboutsummaryrefslogtreecommitdiffstats
path: root/vid-webpack-master/src/app/shared/components/customModal/models/modal-button.model.ts
blob: 5e1f4a4a891ea94813a3cab6118fd78c755f0bdf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import {ButtonType} from "onap-ui-angular/dist/dist/common";
import {Placement} from "./modal.placement";

export interface IButtonComponent {
  text: string;
  disabled?: boolean;
  type?: ButtonType;
  testId?: string;
  preventDoubleClick?: boolean;
  icon_name?: string;
  icon_position?: string;
  show_spinner?: boolean;
  spinner_position?: Placement;
  size?: string;
}