shelving 1.186.0 → 1.186.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/package.json
CHANGED
package/schema/DateSchema.d.ts
CHANGED
|
@@ -26,7 +26,7 @@ export declare class DateSchema extends Schema<string> {
|
|
|
26
26
|
readonly max: Date | undefined;
|
|
27
27
|
readonly input: DateInputType;
|
|
28
28
|
readonly step: number | undefined;
|
|
29
|
-
format:
|
|
29
|
+
format: typeof formatDate;
|
|
30
30
|
constructor({ one, min, max, value, input, step, format, ...options }: DateSchemaOptions);
|
|
31
31
|
validate(value?: unknown): string;
|
|
32
32
|
stringify(value: Date): string;
|
package/schema/NumberSchema.d.ts
CHANGED
|
@@ -16,7 +16,7 @@ export declare class NumberSchema extends Schema<number> {
|
|
|
16
16
|
readonly min: number;
|
|
17
17
|
readonly max: number;
|
|
18
18
|
readonly step: number | undefined;
|
|
19
|
-
format:
|
|
19
|
+
format: typeof formatNumber;
|
|
20
20
|
constructor({ one, title, min, max, step, format, value, ...options }: NumberSchemaOptions);
|
|
21
21
|
validate(value?: unknown): number;
|
|
22
22
|
}
|