File Explorer

/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 /.

trie.d.ts555 B · 27 lines
/** * 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>;}