import { IMountFsMode } from "./IMountFsMode";
/**
 * Interface for the options to the mount file-system API.
 * @export
 * @interface IMountFsOptions
 */
export interface IMountFsOptions {
    /**
     * The file system type to mount
     * @type {string}
     */
    "fs-type"?: string;
    /**
     * The mode for mounting the file system
     * @type {IMountFsMode}
     */
    mode?: IMountFsMode;
}
