UNPKG

@rubeusteam/rb-angular-components

Version:
17 lines (16 loc) 463 B
import { RbEncapsulatedButton } from './button.interface'; export interface RbDialog { title: string; subtitle: string; content: string; isMultipleContent: boolean; multipleContent: RbDialogMultipleContent[]; buttons?: RbEncapsulatedButton[]; actionsAlign?: 'start' | 'center' | 'end'; labelField?: string; fieldValueDafault?: string; } export interface RbDialogMultipleContent { subtitle: string; paragraph: string; }