@pkerschbaum/code-oss-file-service
Version:
VS Code ([microsoft/vscode](https://github.com/microsoft/vscode)) includes a rich "`FileService`" and "`DiskFileSystemProvider`" abstraction built on top of Node.js core modules (`fs`, `path`) and Electron's `shell` module. This package allows to use that
16 lines • 424 B
TypeScript
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;
[Symbol.iterator](): Iterator<E>;
}
//# sourceMappingURL=linkedList.d.ts.map