/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 DefaultWeakMap Typings * ================================ */export default class DefaultWeakMap<K extends object, V> { // Constructor constructor(factory: (key: K) => V); // Methods clear(): void; set(key: K, value: V): this; delete(key: K): boolean; has(key: K): boolean; get(key: K): V; peek(key: K): V | undefined; inspect(): any;}