Represents mutable properties as given in the configuration. This provides some convenience, which is later mapped to MutableProperties.

interface MutablePropertiesConfig {
    blob?: AtomicOrArray<BlobTypeConfig>;
    editing?: AtomicOrArray<boolean>;
    name?: AtomicOrArray<string>;
    readable?: AtomicOrArray<boolean>;
}

Properties

editing?: AtomicOrArray<boolean>
name?: AtomicOrArray<string>
readable?: AtomicOrArray<boolean>