projects/netgrif-components-core/src/lib/dialog/models/DialogData.ts
Properties |
|
[k: string]:
|
| content |
content:
|
Type : string
|
| negativeLabel |
negativeLabel:
|
Type : string
|
| Optional |
| placeholder |
placeholder:
|
Type : string
|
| Optional |
| positiveLabel |
positiveLabel:
|
Type : string
|
| Optional |
| title |
title:
|
Type : string
|
export interface DialogData {
title: string;
content: string;
placeholder?: string;
negativeLabel?: string;
positiveLabel?: string;
[k: string]: any;
}