/proc/thread-self/root/var/runtime/node_modules/@aws-sdk/node_modules/mnemonist
This explorer reads the filesystem of the server it runs on, so /workspace/user isn't present here. Browsing and the terminal still work against this server's own disk from /.
/** * Mnemonist SparseSet Typings * ============================ */export default class SparseSet implements Iterable<number> { // Members length: number; size: number; // Constructor constructor(length: number); // Methods clear(): void; has(value: number): boolean; add(value: number): this; delete(value: number): boolean; forEach(callback: (value: number, key: number, set: this) => void, scope?: any): void; values(): IterableIterator<number>; [Symbol.iterator](): IterableIterator<number>; inspect(): any;}