diff options
author | Ittay Stern <ittay.stern@att.com> | 2020-01-09 13:53:34 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2020-01-09 13:53:34 +0000 |
commit | 2d701e93373c70e33c2f797d7b2c177cfe96bc2e (patch) | |
tree | 6e8d92931eb5edab44f28ba5daa305b8886b9a62 /vid-webpack-master/src/app/shared/components/customModal/models/modal-button.model.ts | |
parent | 2e0d6b1a8fe5fdeef16c90e438c9df425f40b855 (diff) | |
parent | 4ef3ee778fc944cdfe28146d4eed360ce096e5ee (diff) |
Merge "Upgrade to Angular 8"
Diffstat (limited to 'vid-webpack-master/src/app/shared/components/customModal/models/modal-button.model.ts')
-rw-r--r-- | vid-webpack-master/src/app/shared/components/customModal/models/modal-button.model.ts | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/vid-webpack-master/src/app/shared/components/customModal/models/modal-button.model.ts b/vid-webpack-master/src/app/shared/components/customModal/models/modal-button.model.ts new file mode 100644 index 000000000..5e1f4a4a8 --- /dev/null +++ b/vid-webpack-master/src/app/shared/components/customModal/models/modal-button.model.ts @@ -0,0 +1,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; +} |