Type alias BackendConfiguration<T>

BackendConfiguration<T>: OptionsOf<T> & Partial<SharedConfig> & {
    backend: T;
}

Specifies a file system backend type and its options.

Individual options can recursively contain BackendConfiguration objects for values that require file systems.

The configuration for each file system corresponds to that file system's option object passed to its create() method.

Type Parameters

Type declaration

  • backend: T