ASF - v1.0.0
    Preparing search index...

    Interface Modal

    interface Modal {
        title: string;
        subtitle?: string;
        body: Element;
        onConfirmation?: () => void;
        onClose?: () => void;
    }
    Index

    Properties

    title: string
    subtitle?: string
    body: Element
    onConfirmation?: () => void
    onClose?: () => void