UNPKG

tween24

Version:

Tween24.js is animation library that enables fast coding using method chains.

16 lines (13 loc) 300 B
export class LinkedListItem { private _item:any; prev:LinkedListItem|null; next:LinkedListItem|null; constructor (item:any) { this._item = item; this.prev = null; this.next = null; } get item():any { return this._item; } }