File Explorer

/proc/self/root/var/runtime/node_modules/@aws-sdk/node_modules/aws-crt/dist/native

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

error.d.ts665 B · 18 lines
import { ICrtError } from "../common/error";export { ICrtError } from "../common/error";/** * Represents an error encountered in native code. Can also be used to convert a numeric error code into * a human-readable string. * * @category System */export declare class CrtError extends Error implements ICrtError {    readonly error: any;    /** The original integer error code from the CRT */    readonly error_code?: number;    /** The translated error name (e.g. AWS_ERROR_UNKNOWN) */    readonly error_name?: string;    /** @var error - The original error. Most often an error_code, but possibly some other context */    constructor(error: any);}