An interface representing a heap node.

interface IHeapNode {
    key: number;
}

Properties

Properties

key: number