File Explorer

/proc/self/root/proc/thread-self/root/var/runtime/node_modules/@aws-sdk/node_modules/rfdc

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

index.d.ts355 B · 14 lines
declare namespace rfdc {  interface Options {    proto?: boolean;    circles?: boolean;    constructorHandlers?: ConstructorHandlerConfig[];  }}type Constructor<T> = {new(...args: any[]): T};type ConstructorHandlerConfig<T = any> = [Constructor<T>, (o: T) => T]; declare function rfdc(options?: rfdc.Options): <T>(input: T) => T; export = rfdc;