projects/maplander/shared/src/utils/models/data-dialog.ts
Properties |
message |
message:
|
Type : string
|
options |
options:
|
Type : literal type
|
title |
title:
|
Type : string
|
type |
type:
|
Type : DialogType
|
import {DialogType} from '@maplander/types';
export interface DataDialog {
type: DialogType;
title: string;
message: string;
options: { accept: string, cancel: string, placeholder: string };
}