Nfsv4CompoundProcCtx.d.ts 430 B

1234567891011
  1. import { Nfsv4Connection } from './Nfsv4Connection';
  2. import * as msg from '../messages';
  3. export declare class Nfsv4CompoundProcCtx {
  4. readonly connection: Nfsv4Connection;
  5. readonly req: msg.Nfsv4CompoundRequest;
  6. cfh: Uint8Array | null;
  7. sfh: Uint8Array | null;
  8. constructor(connection: Nfsv4Connection, req: msg.Nfsv4CompoundRequest);
  9. getPrincipal(): string;
  10. exec(): Promise<msg.Nfsv4CompoundResponse>;
  11. }