tween24
Version:
Tween24.js is animation library that enables fast coding using method chains.
16 lines (15 loc) • 467 B
TypeScript
import { LinkedListItem } from "./LinkedListItem";
export declare class LinkedList {
private _first;
private _last;
private _length;
constructor(...items: any);
push: (item: any) => LinkedListItem;
pop: () => any;
remove: (listItem: LinkedListItem) => void;
delete: (item: any) => boolean;
map: (callback: (item: any, index: number) => any) => void;
dispose: () => void;
toString: () => string;
get length(): number;
}