/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 SuffixArray Typings * ============================== */export default class SuffixArray { // Members array: Array<number>; length: number; string: string | Array<string>; // Constructor constructor(string: string | Array<string>); // Methods toString(): string; toJSON(): Array<number>; inspect(): any;} export class GeneralizedSuffixArray { // Members array: Array<number>; length: number; size: number; text: string | Array<string>; // Constructor constructor(strings: Array<string> | Array<Array<string>>); // Methods longestCommonSubsequence(): string | Array<string>; toString(): string; toJSON(): Array<number>; inspect(): any;}