Represents the options for reading or writing a file.

interface IFileOptions {
    fetchUrl?: string;
    skipEncryption?: boolean;
}

Properties

fetchUrl?: string

Specifies whether the file should be fetched from a URL.

skipEncryption?: boolean

Specifies whether encryption should be skipped for the file.