Interface QuickViewItem

interface QuickViewItem {
    label: string;
    open: (() => void);
    when?: string;
}

Properties

Properties

label: string
open: (() => void)

Type declaration

    • (): void
    • Returns void

when?: string