Praman — AI-First SAP UI5 Test Automation Platform - v1.0.1
    Preparing search index...

    Interface DialogButtonInfo

    Information about a button within a dialog.

    const btn: DialogButtonInfo = { text: 'OK', id: 'btn1', type: 'Emphasized', enabled: true };
    
    interface DialogButtonInfo {
        enabled: boolean;
        id: string;
        text: string;
        type?: string;
    }
    Index

    Properties

    Properties

    enabled: boolean
    id: string
    text: string
    type?: string