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 { |
export interface AlertDialogParams { |
||||
confirmLabel?: string; |
discardLabel: string; |
||||
discardLabel?: string; |
|
||||
message?: string; |
message?: string; |
||||
title: string; |
title: string; |
||||
} |
} |
||||
|
|||||
@ -1,9 +1,9 @@ |
|||||
import { ConfirmationDialogType } from '@ghostfolio/common/enums'; |
import { ConfirmationDialogType } from '@ghostfolio/common/enums'; |
||||
|
|
||||
export interface ConfirmDialogParams { |
export interface ConfirmDialogParams { |
||||
confirmLabel?: string; |
confirmLabel: string; |
||||
confirmType: ConfirmationDialogType; |
confirmType: ConfirmationDialogType; |
||||
discardLabel?: string; |
discardLabel: string; |
||||
message?: string; |
message?: string; |
||||
title: 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