structs.d.ts 835 B

12345678910111213141516171819202122
  1. import type { Reader } from '@jsonjoy.com/buffers/lib/Reader';
  2. export declare class MountFhandle3 {
  3. readonly data: Reader;
  4. constructor(data: Reader);
  5. }
  6. export declare class MountBody {
  7. readonly hostname: string;
  8. readonly directory: string;
  9. readonly next?: MountBody | undefined;
  10. constructor(hostname: string, directory: string, next?: MountBody | undefined);
  11. }
  12. export declare class MountGroupNode {
  13. readonly name: string;
  14. readonly next?: MountGroupNode | undefined;
  15. constructor(name: string, next?: MountGroupNode | undefined);
  16. }
  17. export declare class MountExportNode {
  18. readonly dir: string;
  19. readonly groups?: MountGroupNode | undefined;
  20. readonly next?: MountExportNode | undefined;
  21. constructor(dir: string, groups?: MountGroupNode | undefined, next?: MountExportNode | undefined);
  22. }