All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ducks.overlays.Actions.d.ts Maven / Gradle / Ivy

There is a newer version: 7.28.3
Show newest version
import { Action } from '../Action'

interface InsertOverlayPayload {
    mode: 'modal' | 'drawer' | 'dialog'
    name: string
    visible: boolean
}

interface InsertPayload {
    name: string
    visible: boolean
    mode: 'modal' | 'popover'
    type: 'page' | 'confirm'
    props?: {
        target: string
        operation: {
            id: string
        }
    }
}

export type InsertOverlay = Action
export type Insert = Action




© 2015 - 2025 Weber Informatics LLC | Privacy Policy