/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 Trie Typings * ======================= */export default class Trie<T> implements Iterable<T> { // Members size: number; // Constructor constructor(Token?: new () => T); // Methods clear(): void; add(prefix: T): this; delete(prefix: T): boolean; has(prefix: T): boolean; find(prefix: T): Array<T>; prefixes(): IterableIterator<T>; keys(): IterableIterator<T>; [Symbol.iterator](): IterableIterator<T>; inspect(): any; // Statics static from<I>(iterable: Iterable<I> | {[key: string]: I}): Trie<I>;}