typebox 1.0.3 → 1.0.4
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.
|
@@ -150,7 +150,7 @@ export interface TNumberOptions extends TSchemaOptions {
|
|
|
150
150
|
/**
|
|
151
151
|
* Specifies that the number must be a multiple of this value.
|
|
152
152
|
*/
|
|
153
|
-
multipleOf?: number;
|
|
153
|
+
multipleOf?: number | bigint;
|
|
154
154
|
}
|
|
155
155
|
export type TFormat = 'base64' | 'date-time' | 'date' | 'duration' | 'email' | 'hostname' | 'idn-email' | 'idn-hostname' | 'ipv4' | 'ipv6' | 'iri-reference' | 'iri' | 'json-pointer-uri-fragment' | 'json-pointer' | 'json-string' | 'regex' | 'relative-json-pointer' | 'time' | 'uri-reference' | 'uri-template' | 'url' | 'uuid' | ({} & string);
|
|
156
156
|
export interface TStringOptions extends TSchemaOptions {
|