/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 StaticDisjointSet Typings * ==================================== */import {ArrayLike} from './utils/types'; export default class StaticDisjointSet { // Members dimension: number; size: number; // Constructor constructor(size: number); // Methods find(x: number): number; union(x: number, y: number): this; connected(x: number, y: number): boolean; mapping(): ArrayLike; compile(): Array<Array<number>>; inspect(): any;}