@zenfs/core 0.7.0 → 0.7.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/backends/backend.d.ts +1 -1
- package/dist/browser.min.js.map +2 -2
- package/dist/config.d.ts +2 -2
- package/package.json +1 -1
- package/readme.md +18 -39
|
@@ -8,7 +8,7 @@ export interface OptionConfig<T> {
|
|
|
8
8
|
/**
|
|
9
9
|
* The basic JavaScript type(s) for this option.
|
|
10
10
|
*/
|
|
11
|
-
type: OptionType | OptionType[];
|
|
11
|
+
type: OptionType | readonly OptionType[];
|
|
12
12
|
/**
|
|
13
13
|
* Whether or not the option is required (optional can be set to null or undefined). Defaults to false.
|
|
14
14
|
*/
|