custom-electronjs-titlebar
Version:
This is a library for electron.js to allow you to add custom titlebars!
18 lines (17 loc) • 427 B
TypeScript
import { Iterator } from '../common/iterator';
export declare class LinkedList<E> {
private _first;
private _last;
private _size;
get size(): number;
isEmpty(): boolean;
clear(): void;
unshift(element: E): () => void;
push(element: E): () => void;
private _insert;
shift(): E | undefined;
pop(): E | undefined;
private _remove;
iterator(): Iterator<E>;
toArray(): E[];
}