Variable IsoConst

Iso: {
    name: "Iso";
    options: {
        data: {
            description: "The ISO file in a buffer";
            required: true;
            type: "object";
            validator(arg): void;
        };
    };
    create(options): IsoFS;
    isAvailable(): boolean;
} = ...

Type declaration

  • Readonly name: "Iso"
  • Readonly options: {
        data: {
            description: "The ISO file in a buffer";
            required: true;
            type: "object";
            validator(arg): void;
        };
    }
    • Readonly data: {
          description: "The ISO file in a buffer";
          required: true;
          type: "object";
          validator(arg): void;
      }
      • Readonly description: "The ISO file in a buffer"
      • Readonly required: true
      • Readonly type: "object"
      • validator:function
        • Parameters

          • arg: unknown

          Returns void

  • create:function
  • isAvailable:function

Generated using TypeDoc