Interface SpinButtonArguments<T>

interface SpinButtonArguments<T> {
    mapping?: string[];
    step?: number;
    values: T[];
}

Type Parameters

  • T = any

Properties

Properties

mapping?: string[]

Values to be mapped to a value if not descriptive enough.

step?: number

Changes the amount of items to increment or decrement by when using page up or page down keys.

Default

1
values: T[]

The values to cycle through.

Generated using TypeDoc