@ronin/compiler 0.13.6 → 0.13.7
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/index.d.ts +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
@@ -187,7 +187,7 @@ type ModelField = (ModelFieldBasics & {
|
|
187
187
|
type?: never;
|
188
188
|
}) | (ModelFieldBasics & {
|
189
189
|
/** The kind of value that should be stored inside the field. */
|
190
|
-
type: 'boolean' | 'date' | 'json';
|
190
|
+
type: 'boolean' | 'date' | 'json' | 'blob';
|
191
191
|
}) | (ModelFieldBasics & {
|
192
192
|
/** The kind of value that should be stored inside the field. */
|
193
193
|
type: 'string';
|