Interface CustomDropdownEntry

Represents one selectable entry.

Deprecated

Use DropdownEntry in the UI configuration instead.

interface CustomDropdownEntry {
    callback?: ((currentEntry) => void);
    id: string;
    name: string;
}

Properties

Properties

callback?: ((currentEntry) => void)

Type declaration

    • (currentEntry): void
    • This callback is invoked once the user selects the corresponding entry.

      Parameters

      Returns void

id: string
name: string

Generated using TypeDoc