mirror of https://github.com/ghostfolio/ghostfolio
committed by
GitHub
7 changed files with 61 additions and 58 deletions
@ -1,6 +1,5 @@ |
|||
export interface AlertDialogParams { |
|||
confirmLabel?: string; |
|||
discardLabel?: string; |
|||
discardLabel: string; |
|||
message?: string; |
|||
title: string; |
|||
} |
|||
|
|||
@ -1,9 +1,9 @@ |
|||
import { ConfirmationDialogType } from '@ghostfolio/common/enums'; |
|||
|
|||
export interface ConfirmDialogParams { |
|||
confirmLabel?: string; |
|||
confirmLabel: string; |
|||
confirmType: ConfirmationDialogType; |
|||
discardLabel?: string; |
|||
discardLabel: string; |
|||
message?: string; |
|||
title: string; |
|||
} |
|||
|
|||
@ -0,0 +1,7 @@ |
|||
export interface PromptDialogParams { |
|||
confirmLabel: string; |
|||
defaultValue?: string; |
|||
discardLabel: string; |
|||
title: string; |
|||
valueLabel?: string; |
|||
} |
|||
Loading…
Reference in new issue