File Explorer

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

native_resource.d.ts695 B · 29 lines
/** * Represents an object allocated natively inside the AWS CRT. * @internal */export declare class NativeResource {    private handle;    constructor(handle: any);    /** @internal */    native_handle(): any;}/** @internal */type Ctor<T> = new (...args: any[]) => T;/** * Represents an object allocated natively inside the AWS CRT which also * needs a node/TS base class * @internal */export declare function NativeResourceMixin<T extends Ctor<{}>>(Base: T): {    new (...args: any[]): {        /** @internal */        _handle: any;        /** @internal */        _super(handle: any): void;        /** @internal */        native_handle(): any;    };} & T;export {};