Interface FileRequest<TMethod>Internal

interface FileRequest<TMethod> {
    _zenfs: true;
    args: Parameters<FileMethods[TMethod]>;
    fd: number;
    id: string;
    method: TMethod;
    scope: "file";
    stack: string;
}

Type Parameters

  • TMethod extends FileMethod = FileMethod

Hierarchy

  • Request
    • FileRequest

Properties

_zenfs
args: Parameters<FileMethods[TMethod]>
fd: number
id: string
method: TMethod
scope
stack: string