Amazon Vinyl
Preparing search index...
@amazon/vinyl-util
LinkedNode
Interface LinkedNode<T>
A doubly-linked node.
If a node is to move from one list to another, it must be removed first.
interface
LinkedNode
<
T
>
{
next
:
LinkedNode
<
T
>
|
null
;
previous
:
LinkedNode
<
T
>
|
null
;
removed
:
boolean
;
value
:
T
;
}
Type Parameters
T
Index
Properties
next
previous
removed
value
Properties
next
next
:
LinkedNode
<
T
>
|
null
previous
previous
:
LinkedNode
<
T
>
|
null
removed
removed
:
boolean
value
value
:
T
Settings
Member Visibility
Protected
Inherited
External
Theme
OS
Light
Dark
On This Page
Properties
next
previous
removed
value
Amazon Vinyl
Loading...
A doubly-linked node.
If a node is to move from one list to another, it must be removed first.