Interface FSRequest<TMethod>Internal

interface FSRequest<TMethod> {
    _zenfs: true;
    args: Parameters<ExtractProperties<FileSystem, ((...args: any[]) => Promise<any> | FileSystemMetadata)>[TMethod]>;
    id: string;
    method: TMethod;
    scope: "fs";
    stack: string;
}

Type Parameters

  • TMethod extends FSMethod = FSMethod

Hierarchy

  • Request
    • FSRequest

Properties

_zenfs
args: Parameters<ExtractProperties<FileSystem, ((...args: any[]) => Promise<any> | FileSystemMetadata)>[TMethod]>
id: string
method: TMethod
scope
stack: string