Skip to main content

Class: UIKitOptions

Defined in: src/core/UIKitOptions.ts:6

Options for configuring integration with @pmndrs/uikit.

Constructors

Constructor

new UIKitOptions(): UIKitOptions

Returns

UIKitOptions

Properties

enabled

enabled: boolean = false

Defined in: src/core/UIKitOptions.ts:8

Whether UIKit support is enabled.


reversePainterSortStable()?

optional reversePainterSortStable: (a, b) => number

Defined in: src/core/UIKitOptions.ts:11

The custom sorting function provided by @pmndrs/uikit.

Parameters

a

RenderItem

b

RenderItem

Returns

number

Methods

enable()

enable(uikit): this

Defined in: src/core/UIKitOptions.ts:19

Enables @pmndrs/uikit integration.

Parameters

uikit

The imported @pmndrs/uikit module instance.

reversePainterSortStable

(a, b) => number

Returns

this

The instance for chaining.