fivem-ts

a library to speed up the development of Fivem scripts and frameworks


Project maintained by Purpose-Dev Hosted on GitHub Pages — Theme by mattgraham

fivem-ts - Documentation v0.7.5Docs


fivem-ts - Documentation v0.7.5 / Shared / PriorityQueueElement

Interface: PriorityQueueElement<T>

Represents an element in a priority queue.

Type Parameters

T

Properties

priority

priority: number

The priority of the element, higher numbers indicate higher priority.

Defined in

shared/ds/queue/PriorityQueueElement.ts:10


value

value: T

The value of the element.

Defined in

shared/ds/queue/PriorityQueueElement.ts:9