@wabot-dev/framework 0.1.0-beta.61 → 0.1.0-beta.62
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/src/index.d.ts +1 -1
- package/package.json +1 -1
package/dist/src/index.d.ts
CHANGED
|
@@ -262,7 +262,7 @@ declare function isDate(): (target: object, propertyKey: string | symbol) => voi
|
|
|
262
262
|
declare function validateIsDate(value: any): IValidationResult<Date>;
|
|
263
263
|
|
|
264
264
|
interface IValidateIsInOptions {
|
|
265
|
-
values: (number | string | boolean | null)[];
|
|
265
|
+
values: readonly (number | string | boolean | null)[];
|
|
266
266
|
}
|
|
267
267
|
declare function validateIsIn(value: any, options: IValidateIsInOptions): IValidationResult<any>;
|
|
268
268
|
|